diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml
index b74b6114ee..23db3f999a 100644
--- a/.github/workflows/config.yml
+++ b/.github/workflows/config.yml
@@ -177,13 +177,6 @@ jobs:
pip install plotly
python test/process_bsb_analysis.py
- - name: Run tests
- run: |
- sudo gem install minitest-reporters
- sudo gem install simplecov
- sudo gem install simplecov-html
- ruby test/test_bsb_analysis.rb
-
- name: Upload integration results
uses: actions/upload-artifact@v3
with:
@@ -202,6 +195,13 @@ jobs:
project_testing/testing_upgrades/results_csvs/results_up16.csv
name: buildstockbatch_results_csvs
+ - name: Run tests
+ run: |
+ sudo gem install minitest-reporters
+ sudo gem install simplecov
+ sudo gem install simplecov-html
+ ruby test/test_bsb_analysis.rb
+
compare-tools:
runs-on: ubuntu-latest
needs: [analysis-tests, integration-tests]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb6568d527..ea7237a800 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@ Features
- Update `run_analysis.rb` to map datapoints to run folder names when the `-k` argument is supplied ([#1138](https://github.com/NREL/resstock/pull/1138))
- Add Water Heater Location and Geometry Space Combination, update Geometry Garage and Geometry Floor Area Bin to RECS2020, update RECS2020 microdata from v2 to v4, auto-generate buildstocks for yml_precomputed tests ([#1125](https://github.com/NREL/resstock/pull/1125))
- Add ability to request timeseries resilience output from the yml file ([#1113](https://github.com/NREL/resstock/pull/1113))
+- Add ability to calculate detailed utility bills based on a user-specified TSV file of paths to JSON utility rate tariff files ([#1109](https://github.com/NREL/resstock/pull/1109))
Fixes
- Set standard format for options_lookup ([#962](https://github.com/NREL/resstock/pull/962))
diff --git a/docs/read_the_docs/source/workflow_outputs/csv_tables/other_outputs.csv b/docs/read_the_docs/source/workflow_outputs/csv_tables/other_outputs.csv
index 9b8822aa89..466477cc2f 100644
--- a/docs/read_the_docs/source/workflow_outputs/csv_tables/other_outputs.csv
+++ b/docs/read_the_docs/source/workflow_outputs/csv_tables/other_outputs.csv
@@ -23,6 +23,8 @@ build_existing_model.simulation_control_run_period_calendar_year,"This numeric f
build_existing_model.simulation_control_run_period_end_day_of_month,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired.
build_existing_model.simulation_control_run_period_end_month,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired."
build_existing_model.simulation_control_timestep,Value must be a divisor of 60.
+build_existing_model.utility_bill_detailed_filepaths,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header."
+build_existing_model.utility_bill_electricity_filepaths,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list."
build_existing_model.utility_bill_electricity_fixed_charges,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
build_existing_model.utility_bill_electricity_marginal_rates,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list."
build_existing_model.utility_bill_fuel_oil_fixed_charges,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
diff --git a/measures/ApplyUpgrade/measure.rb b/measures/ApplyUpgrade/measure.rb
index c1bc4b928b..c8dfc5be9c 100644
--- a/measures/ApplyUpgrade/measure.rb
+++ b/measures/ApplyUpgrade/measure.rb
@@ -430,6 +430,7 @@ def run(model, runner, user_arguments)
# Utility Bills
measures['BuildResidentialHPXML'][0]['utility_bill_scenario_names'] = values['utility_bill_scenario_names']
+ measures['BuildResidentialHPXML'][0]['utility_bill_electricity_filepaths'] = values['utility_bill_electricity_filepaths']
measures['BuildResidentialHPXML'][0]['utility_bill_electricity_fixed_charges'] = values['utility_bill_electricity_fixed_charges']
measures['BuildResidentialHPXML'][0]['utility_bill_electricity_marginal_rates'] = values['utility_bill_electricity_marginal_rates']
measures['BuildResidentialHPXML'][0]['utility_bill_natural_gas_fixed_charges'] = values['utility_bill_natural_gas_fixed_charges']
diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml
index 3322b797b0..e62ff58852 100644
--- a/measures/ApplyUpgrade/measure.xml
+++ b/measures/ApplyUpgrade/measure.xml
@@ -3,8 +3,8 @@
3.1
apply_upgrade
33f1654c-f734-43d1-b35d-9d2856e41b5a
- 1e261f14-26dd-4944-9bbf-a667008cef74
- 2023-10-10T21:15:01Z
+ f3532e90-9cb3-44bb-adb9-51ac90998028
+ 2023-10-24T01:53:02Z
9339BE01
ApplyUpgrade
Apply Upgrade
@@ -6330,7 +6330,7 @@
measure.rb
rb
script
- FDFA2666
+ 03C861F4
constants.rb
diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb
index 0f3a941ac3..ca993ec081 100644
--- a/measures/BuildExistingModel/measure.rb
+++ b/measures/BuildExistingModel/measure.rb
@@ -131,6 +131,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument
arg.setDescription('Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header.')
args << arg
+ arg = OpenStudio::Measure::OSArgument.makeStringArgument('utility_bill_detailed_filepaths', false)
+ arg.setDisplayName('Utility Bills: Detailed Filepaths')
+ arg.setDescription('Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header.')
+ args << arg
+
arg = OpenStudio::Measure::OSArgument.makeStringArgument('utility_bill_electricity_fixed_charges', false)
arg.setDisplayName('Utility Bills: Electricity Fixed Charges')
arg.setDescription('Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.')
@@ -424,6 +429,11 @@ def run(model, runner, user_arguments)
utility_bill_simple_filepaths = [nil] * utility_bill_scenario_names.size
end
+ utility_bill_detailed_filepaths = args[:utility_bill_detailed_filepaths].get.split(',').map(&:strip)
+ if utility_bill_detailed_filepaths.empty?
+ utility_bill_detailed_filepaths = [nil] * utility_bill_scenario_names.size
+ end
+
utility_bill_electricity_fixed_charges = args[:utility_bill_electricity_fixed_charges].get.split(',').map(&:strip)
if utility_bill_electricity_fixed_charges.empty?
utility_bill_electricity_fixed_charges = [nil] * utility_bill_scenario_names.size
@@ -474,7 +484,38 @@ def run(model, runner, user_arguments)
utility_bill_wood_marginal_rates = [nil] * utility_bill_scenario_names.size
end
+ utility_bill_pv_compensation_types = args[:utility_bill_pv_compensation_types].get.split(',').map(&:strip)
+ if utility_bill_pv_compensation_types.empty?
+ utility_bill_pv_compensation_types = [nil] * utility_bill_scenario_names.size
+ end
+
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types = args[:utility_bill_pv_net_metering_annual_excess_sellback_rate_types].get.split(',').map(&:strip)
+ if utility_bill_pv_net_metering_annual_excess_sellback_rate_types.empty?
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types = [nil] * utility_bill_scenario_names.size
+ end
+
+ utility_bill_pv_net_metering_annual_excess_sellback_rates = args[:utility_bill_pv_net_metering_annual_excess_sellback_rates].get.split(',').map(&:strip)
+ if utility_bill_pv_net_metering_annual_excess_sellback_rates.empty?
+ utility_bill_pv_net_metering_annual_excess_sellback_rates = [nil] * utility_bill_scenario_names.size
+ end
+
+ utility_bill_pv_feed_in_tariff_rates = args[:utility_bill_pv_feed_in_tariff_rates].get.split(',').map(&:strip)
+ if utility_bill_pv_feed_in_tariff_rates.empty?
+ utility_bill_pv_feed_in_tariff_rates = [nil] * utility_bill_scenario_names.size
+ end
+
+ utility_bill_pv_monthly_grid_connection_fee_units = args[:utility_bill_pv_monthly_grid_connection_fee_units].get.split(',').map(&:strip)
+ if utility_bill_pv_monthly_grid_connection_fee_units.empty?
+ utility_bill_pv_monthly_grid_connection_fee_units = [nil] * utility_bill_scenario_names.size
+ end
+
+ utility_bill_pv_monthly_grid_connection_fees = args[:utility_bill_pv_monthly_grid_connection_fees].get.split(',').map(&:strip)
+ if utility_bill_pv_monthly_grid_connection_fees.empty?
+ utility_bill_pv_monthly_grid_connection_fees = [nil] * utility_bill_scenario_names.size
+ end
+
utility_bill_scenarios = utility_bill_scenario_names.zip(utility_bill_simple_filepaths,
+ utility_bill_detailed_filepaths,
utility_bill_electricity_fixed_charges,
utility_bill_electricity_marginal_rates,
utility_bill_natural_gas_fixed_charges,
@@ -484,8 +525,15 @@ def run(model, runner, user_arguments)
utility_bill_fuel_oil_fixed_charges,
utility_bill_fuel_oil_marginal_rates,
utility_bill_wood_fixed_charges,
- utility_bill_wood_marginal_rates)
-
+ utility_bill_wood_marginal_rates,
+ utility_bill_pv_compensation_types,
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types,
+ utility_bill_pv_net_metering_annual_excess_sellback_rates,
+ utility_bill_pv_feed_in_tariff_rates,
+ utility_bill_pv_monthly_grid_connection_fee_units,
+ utility_bill_pv_monthly_grid_connection_fees)
+
+ utility_bill_electricity_filepaths = []
utility_bill_electricity_fixed_charges = []
utility_bill_electricity_marginal_rates = []
utility_bill_natural_gas_fixed_charges = []
@@ -496,36 +544,31 @@ def run(model, runner, user_arguments)
utility_bill_fuel_oil_marginal_rates = []
utility_bill_wood_fixed_charges = []
utility_bill_wood_marginal_rates = []
+ utility_bill_pv_compensation_types = []
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types = []
+ utility_bill_pv_net_metering_annual_excess_sellback_rates = []
+ utility_bill_pv_feed_in_tariff_rates = []
+ utility_bill_pv_monthly_grid_connection_fee_units = []
+ utility_bill_pv_monthly_grid_connection_fees = []
utility_bill_scenarios.each do |utility_bill_scenario|
- _name, simple_filepath, electricity_fixed_charge, electricity_marginal_rate, natural_gas_fixed_charge, natural_gas_marginal_rate, propane_fixed_charge, propane_marginal_rate, fuel_oil_fixed_charge, fuel_oil_marginal_rate, wood_fixed_charge, wood_marginal_rate = utility_bill_scenario
+ _name, simple_filepath, detailed_filepath, elec_fixed_charge, elec_marginal_rate, natural_gas_fixed_charge, natural_gas_marginal_rate, propane_fixed_charge, propane_marginal_rate, fuel_oil_fixed_charge, fuel_oil_marginal_rate, wood_fixed_charge, wood_marginal_rate, pv_compensation_type, pv_net_metering_annual_excess_sellback_rate_type, pv_net_metering_annual_excess_sellback_rate, pv_feed_in_tariff_rate, pv_monthly_grid_connection_fee_units, pv_monthly_grid_connection_fee = utility_bill_scenario
- if !simple_filepath.nil? && !simple_filepath.empty?
- simple_filepath = File.join(resources_dir, simple_filepath)
- if !File.exist?(simple_filepath)
- runner.registerError("Utility bill scenario file '#{simple_filepath}' does not exist.")
- return false
- end
-
- rows = CSV.read(simple_filepath, headers: true, col_sep: "\t")
- utility_rates = rows.map { |d| d.to_hash }
- parameter = utility_rates[0].keys[0]
+ if (!simple_filepath.nil? && !simple_filepath.empty?) || (!detailed_filepath.nil? && !detailed_filepath.empty?)
- if !bldg_data.keys.include?(parameter)
- runner.registerError("Utility bill scenario(s) were specified, but could not find #{parameter}.")
- return false
- end
+ if !simple_filepath.nil? && !simple_filepath.empty?
+ simple_filepath = File.join(resources_dir, simple_filepath)
+ utility_rate = get_utility_rate(runner, simple_filepath, bldg_data)
- utility_rates = utility_rates.select { |r| r[parameter] == bldg_data[parameter] }
+ elsif !detailed_filepath.nil? && !detailed_filepath.empty?
+ detailed_filepath = File.join(resources_dir, detailed_filepath)
+ utility_rate = get_utility_rate(runner, detailed_filepath, bldg_data)
+ utility_rate['elec_filepath'] = File.join(File.dirname(detailed_filepath), utility_rate['elec_filepath']) if !utility_rate['elec_filepath'].nil?
- if utility_rates.size != 1
- runner.registerWarning("Could not find #{parameter}=#{bldg_data[parameter]} in #{simple_filepath}.")
- utility_rate = Hash[rows.headers.map { |x| [x, nil] }]
- else
- utility_rate = utility_rates[0]
end
- utility_bill_electricity_fixed_charges << utility_rate['electricity_fixed_charge']
- utility_bill_electricity_marginal_rates << utility_rate['electricity_marginal_rate']
+ utility_bill_electricity_filepaths << utility_rate['elec_filepath']
+ utility_bill_electricity_fixed_charges << utility_rate['elec_fixed_charge']
+ utility_bill_electricity_marginal_rates << utility_rate['elec_marginal_rate']
utility_bill_natural_gas_fixed_charges << utility_rate['natural_gas_fixed_charge']
utility_bill_natural_gas_marginal_rates << utility_rate['natural_gas_marginal_rate']
utility_bill_propane_fixed_charges << utility_rate['propane_fixed_charge']
@@ -534,9 +577,16 @@ def run(model, runner, user_arguments)
utility_bill_fuel_oil_marginal_rates << utility_rate['fuel_oil_marginal_rate']
utility_bill_wood_fixed_charges << utility_rate['wood_fixed_charge']
utility_bill_wood_marginal_rates << utility_rate['wood_marginal_rate']
- else
- utility_bill_electricity_fixed_charges << electricity_fixed_charge
- utility_bill_electricity_marginal_rates << electricity_marginal_rate
+ utility_bill_pv_compensation_types << utility_rate['pv_compensation_type']
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types << utility_rate['pv_net_metering_annual_excess_sellback_rate_type']
+ utility_bill_pv_net_metering_annual_excess_sellback_rates << utility_rate['pv_net_metering_annual_excess_sellback_rate']
+ utility_bill_pv_feed_in_tariff_rates << utility_rate['pv_feed_in_tariff_rate']
+ utility_bill_pv_monthly_grid_connection_fee_units << utility_rate['pv_monthly_grid_connection_fee_units']
+ utility_bill_pv_monthly_grid_connection_fees << utility_rate['pv_monthly_grid_connection_fee']
+ else # if simple or detailed filepath not assigned, use what's populated in the yml
+ utility_bill_electricity_filepaths << nil # support detailed tariff assignment only through the lookup file
+ utility_bill_electricity_fixed_charges << elec_fixed_charge
+ utility_bill_electricity_marginal_rates << elec_marginal_rate
utility_bill_natural_gas_fixed_charges << natural_gas_fixed_charge
utility_bill_natural_gas_marginal_rates << natural_gas_marginal_rate
utility_bill_propane_fixed_charges << propane_fixed_charge
@@ -545,12 +595,22 @@ def run(model, runner, user_arguments)
utility_bill_fuel_oil_marginal_rates << fuel_oil_marginal_rate
utility_bill_wood_fixed_charges << wood_fixed_charge
utility_bill_wood_marginal_rates << wood_marginal_rate
+ utility_bill_pv_compensation_types << pv_compensation_type
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types << pv_net_metering_annual_excess_sellback_rate_type
+ utility_bill_pv_net_metering_annual_excess_sellback_rates << pv_net_metering_annual_excess_sellback_rate
+ utility_bill_pv_feed_in_tariff_rates << pv_feed_in_tariff_rate
+ utility_bill_pv_monthly_grid_connection_fee_units << pv_monthly_grid_connection_fee_units
+ utility_bill_pv_monthly_grid_connection_fees << pv_monthly_grid_connection_fee
end
end
utility_bill_scenario_names = utility_bill_scenario_names.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_scenario_names'] = utility_bill_scenario_names
+ utility_bill_electricity_filepaths = utility_bill_electricity_filepaths.join(',')
+ measures['BuildResidentialHPXML'][0]['utility_bill_electricity_filepaths'] = utility_bill_electricity_filepaths
+ register_value(runner, 'utility_bill_electricity_filepaths', utility_bill_electricity_filepaths)
+
utility_bill_electricity_fixed_charges = utility_bill_electricity_fixed_charges.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_electricity_fixed_charges'] = utility_bill_electricity_fixed_charges
register_value(runner, 'utility_bill_electricity_fixed_charges', utility_bill_electricity_fixed_charges)
@@ -591,23 +651,29 @@ def run(model, runner, user_arguments)
measures['BuildResidentialHPXML'][0]['utility_bill_wood_marginal_rates'] = utility_bill_wood_marginal_rates
register_value(runner, 'utility_bill_wood_marginal_rates', utility_bill_wood_marginal_rates)
- utility_bill_pv_compensation_types = args[:utility_bill_pv_compensation_types].get
+ utility_bill_pv_compensation_types = utility_bill_pv_compensation_types.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_compensation_types'] = utility_bill_pv_compensation_types
+ register_value(runner, 'utility_bill_pv_compensation_types', utility_bill_pv_compensation_types)
- utility_bill_pv_net_metering_annual_excess_sellback_rate_types = args[:utility_bill_pv_net_metering_annual_excess_sellback_rate_types].get
+ utility_bill_pv_net_metering_annual_excess_sellback_rate_types = utility_bill_pv_net_metering_annual_excess_sellback_rate_types.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_net_metering_annual_excess_sellback_rate_types'] = utility_bill_pv_net_metering_annual_excess_sellback_rate_types
+ register_value(runner, 'utility_bill_pv_net_metering_annual_excess_sellback_rate_types', utility_bill_pv_net_metering_annual_excess_sellback_rate_types)
- utility_bill_pv_net_metering_annual_excess_sellback_rates = args[:utility_bill_pv_net_metering_annual_excess_sellback_rates].get
+ utility_bill_pv_net_metering_annual_excess_sellback_rates = utility_bill_pv_net_metering_annual_excess_sellback_rates.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_net_metering_annual_excess_sellback_rates'] = utility_bill_pv_net_metering_annual_excess_sellback_rates
+ register_value(runner, 'utility_bill_pv_net_metering_annual_excess_sellback_rates', utility_bill_pv_net_metering_annual_excess_sellback_rates)
- utility_bill_pv_feed_in_tariff_rates = args[:utility_bill_pv_feed_in_tariff_rates].get
+ utility_bill_pv_feed_in_tariff_rates = utility_bill_pv_feed_in_tariff_rates.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_feed_in_tariff_rates'] = utility_bill_pv_feed_in_tariff_rates
+ register_value(runner, 'utility_bill_pv_feed_in_tariff_rates', utility_bill_pv_feed_in_tariff_rates)
- utility_bill_pv_monthly_grid_connection_fee_units = args[:utility_bill_pv_monthly_grid_connection_fee_units].get
+ utility_bill_pv_monthly_grid_connection_fee_units = utility_bill_pv_monthly_grid_connection_fee_units.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_monthly_grid_connection_fee_units'] = utility_bill_pv_monthly_grid_connection_fee_units
+ register_value(runner, 'utility_bill_pv_monthly_grid_connection_fee_units', utility_bill_pv_monthly_grid_connection_fee_units)
- utility_bill_pv_monthly_grid_connection_fees = args[:utility_bill_pv_monthly_grid_connection_fees].get
+ utility_bill_pv_monthly_grid_connection_fees = utility_bill_pv_monthly_grid_connection_fees.join(',')
measures['BuildResidentialHPXML'][0]['utility_bill_pv_monthly_grid_connection_fees'] = utility_bill_pv_monthly_grid_connection_fees
+ register_value(runner, 'utility_bill_pv_monthly_grid_connection_fees', utility_bill_pv_monthly_grid_connection_fees)
end
# Set BuildResidentialScheduleFile arguments
@@ -670,6 +736,32 @@ def run(model, runner, user_arguments)
return true
end
+
+ def get_utility_rate(runner, filepath, bldg_data)
+ if !File.exist?(filepath)
+ runner.registerError("Utility bill scenario file '#{filepath}' does not exist.")
+ return false
+ end
+
+ rows = CSV.read(filepath, headers: true, col_sep: "\t")
+ utility_rates = rows.map { |d| d.to_hash }
+ parameter = utility_rates[0].keys[0]
+
+ if !bldg_data.keys.include?(parameter)
+ runner.registerError("Utility bill scenario(s) were specified, but could not find #{parameter}.")
+ return false
+ end
+
+ utility_rates = utility_rates.select { |r| r[parameter] == bldg_data[parameter] }
+
+ if utility_rates.size != 1
+ runner.registerWarning("Could not find #{parameter}=#{bldg_data[parameter]} in #{filepath}.")
+ utility_rate = Hash[rows.headers.map { |x| [x, nil] }]
+ else
+ utility_rate = utility_rates[0]
+ end
+ return utility_rate
+ end
end
# register the measure to be used by the application
diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml
index 68b9a3a22a..97281fe884 100644
--- a/measures/BuildExistingModel/measure.xml
+++ b/measures/BuildExistingModel/measure.xml
@@ -3,8 +3,8 @@
3.1
build_existing_model
dedf59bb-3b88-4f16-8755-2c1ff5519cbf
- 19530200-5208-43e5-8657-f0f1df6ea696
- 2023-08-21T22:09:39Z
+ 31417054-62f8-4a7b-b07c-ab138761774c
+ 2023-08-30T17:32:40Z
2C38F48B
BuildExistingModel
Build Existing Model
@@ -169,6 +169,14 @@
false
false
+
+ utility_bill_detailed_filepaths
+ Utility Bills: Detailed Filepaths
+ Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header.
+ String
+ false
+ false
+
utility_bill_electricity_fixed_charges
Utility Bills: Electricity Fixed Charges
@@ -320,7 +328,7 @@
measure.rb
rb
script
- BDE2501B
+ C70FC7DE
diff --git a/project_testing/testing_baseline.yml b/project_testing/testing_baseline.yml
index 08ade89d35..4835716e72 100644
--- a/project_testing/testing_baseline.yml
+++ b/project_testing/testing_baseline.yml
@@ -60,7 +60,7 @@ workflow_generator:
simple_filepath: data/simple_rates/State.tsv
- scenario_name: Bills3
- simple_filepath: data/simple_rates/County.tsv
+ detailed_filepath: data/detailed_rates/County.tsv
simulation_output_report:
timeseries_frequency: hourly
diff --git a/project_testing/testing_upgrades.yml b/project_testing/testing_upgrades.yml
index 31a6b1733a..273374f445 100644
--- a/project_testing/testing_upgrades.yml
+++ b/project_testing/testing_upgrades.yml
@@ -60,7 +60,7 @@ workflow_generator:
simple_filepath: data/simple_rates/State.tsv
- scenario_name: Bills3
- simple_filepath: data/simple_rates/County.tsv
+ detailed_filepath: data/detailed_rates/County.tsv
simulation_output_report:
timeseries_frequency: hourly
diff --git a/resources/data/detailed_rates/County.tsv b/resources/data/detailed_rates/County.tsv
new file mode 100644
index 0000000000..698f455a02
--- /dev/null
+++ b/resources/data/detailed_rates/County.tsv
@@ -0,0 +1,59 @@
+County elec_filepath natural_gas_fixed_charge natural_gas_marginal_rate propane_fixed_charge propane_marginal_rate fuel_oil_fixed_charge fuel_oil_marginal_rate wood_fixed_charge wood_marginal_rate pv_compensation_type pv_net_metering_annual_excess_sellback_rate_type pv_net_metering_annual_excess_sellback_rate pv_feed_in_tariff_rates pv_monthly_grid_connection_fee_units pv_monthly_grid_connection_fee
+"CA, Alameda County" Flat/Sample Flat Rate.json 9.7 0.105 0 2.4 0 2.7 0 0.002 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Alpine County" Flat/Sample Flat Rate.json 8.5 0.112 0 3.6 0 4 0 0.001 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Amador County" Flat/Sample Flat Rate.json 8.3 0.082 0 3.6 0 2.8 0 0.0013 FeedInTariff 0.13 $/kW 2.5
+"CA, Butte County" Flat/Sample Flat Rate.json 11 0.093 0 2.2 0 2.6 0 0.002 FeedInTariff 0.13 $ 7.5
+"CA, Calaveras County" Flat/Sample Flat Rate.json 9.7 0.098 0 2.5 0 2.1 0 0.0011 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Colusa County" Flat/Sample Flat Rate.json 11.5 0.115 0 2.4 0 3.4 0 0.0011 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Contra Costa County" Flat/Sample Flat Rate.json 10.1 0.082 0 2.9 0 3.6 0 0.001 FeedInTariff 0.13 $/kW 2.5
+"CA, Del Norte County" Flat/Sample Flat Rate.json 11.8 0.092 0 3.4 0 2.6 0 0.0019 FeedInTariff 0.13 $ 7.5
+"CA, El Dorado County" Flat/Sample Flat Rate.json 9.4 0.099 0 3.2 0 3.2 0 0.0014 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Fresno County" RTP/Sample Real-Time Pricing Rate.json 11.2 0.108 0 2.4 0 3.5 0 0.0016 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Glenn County" RTP/Sample Real-Time Pricing Rate.json 11.8 0.093 0 2.2 0 2.6 0 0.0019 FeedInTariff 0.13 $/kW 2.5
+"CA, Humboldt County" RTP/Sample Real-Time Pricing Rate.json 10.4 0.108 0 2 0 3.7 0 0.0012 FeedInTariff 0.13 $ 7.5
+"CA, Imperial County" RTP/Sample Real-Time Pricing Rate.json 9.3 0.102 0 2.1 0 2.2 0 0.0019 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Inyo County" RTP/Sample Real-Time Pricing Rate.json 11.9 0.08 0 3.6 0 2.1 0 0.0019 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Kern County" RTP/Sample Real-Time Pricing Rate.json 11.2 0.083 0 2.1 0 3.6 0 0.0013 FeedInTariff 0.13 $/kW 2.5
+"CA, Kings County" RTP/Sample Real-Time Pricing Rate.json 9.9 0.097 0 3.3 0 2 0 0.002 FeedInTariff 0.13 $ 7.5
+"CA, Lake County" RTP/Sample Real-Time Pricing Rate.json 11.6 0.1 0 2 0 2.7 0 0.0011 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Lassen County" RTP/Sample Real-Time Pricing Rate.json 9.8 0.091 0 3.5 0 3.2 0 0.001 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Los Angeles County" Tiered/Sample Tiered Rate.json 8.1 0.118 0 3.6 0 2.7 0 0.0015 FeedInTariff 0.13 $/kW 2.5
+"CA, Madera County" Tiered/Sample Tiered Rate.json 10 0.118 0 2.4 0 2.9 0 0.0011 FeedInTariff 0.13 $ 7.5
+"CA, Marin County" Tiered/Sample Tiered Rate.json 9.7 0.096 0 2.7 0 3.5 0 0.0018 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Mariposa County" Tiered/Sample Tiered Rate.json 11 0.09 0 2.6 0 3.4 0 0.0014 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Mendocino County" Tiered/Sample Tiered Rate.json 11.3 0.107 0 3.3 0 2 0 0.0018 FeedInTariff 0.13 $/kW 2.5
+"CA, Merced County" Tiered/Sample Tiered Rate.json 10.5 0.09 0 4 0 3.9 0 0.002 FeedInTariff 0.13 $ 7.5
+"CA, Modoc County" Tiered/Sample Tiered Rate.json 8.8 0.099 0 2.3 0 3.9 0 0.0013 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Mono County" Tiered/Sample Tiered Rate.json 9.5 0.117 0 3.8 0 3.3 0 0.001 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Monterey County" Tiered/Sample Tiered Rate.json 8.9 0.105 0 2.5 0 2.1 0 0.002 FeedInTariff 0.13 $/kW 2.5
+"CA, Napa County" TieredTOU/Sample Tiered Time-of-Use Rate.json 9.2 0.091 0 2.8 0 3 0 0.0017 FeedInTariff 0.13 $ 7.5
+"CA, Nevada County" TieredTOU/Sample Tiered Time-of-Use Rate.json 11.5 0.111 0 3.7 0 3 0 0.0017 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Orange County" TieredTOU/Sample Tiered Time-of-Use Rate.json 11.8 0.091 0 2.6 0 2.4 0 0.0019 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Placer County" TieredTOU/Sample Tiered Time-of-Use Rate.json 8.8 0.09 0 2.5 0 2.6 0 0.0019 FeedInTariff 0.13 $/kW 2.5
+"CA, Plumas County" TieredTOU/Sample Tiered Time-of-Use Rate.json 9.5 0.084 0 2.7 0 3.7 0 0.0011 FeedInTariff 0.13 $ 7.5
+"CA, Riverside County" TieredTOU/Sample Tiered Time-of-Use Rate.json 8.2 0.119 0 2.1 0 3 0 0.0019 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Sacramento County" TieredTOU/Sample Tiered Time-of-Use Rate.json 11.4 0.106 0 2.1 0 3.8 0 0.001 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, San Benito County" TieredTOU/Sample Tiered Time-of-Use Rate.json 8.8 0.104 0 4 0 3.4 0 0.0019 FeedInTariff 0.13 $/kW 2.5
+"CA, San Bernardino County" TieredTOU/Sample Tiered Time-of-Use Rate.json 10.2 0.094 0 2.7 0 3.7 0 0.0017 FeedInTariff 0.13 $ 7.5
+"CA, San Diego County" TOU/Sample Time-of-Use Rate.json 10.8 0.118 0 2.1 0 3.9 0 0.001 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, San Francisco County" TOU/Sample Time-of-Use Rate.json 9.4 0.116 0 2.9 0 2.1 0 0.0012 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, San Joaquin County" TOU/Sample Time-of-Use Rate.json 11.6 0.081 0 2.5 0 2.9 0 0.0014 FeedInTariff 0.13 $/kW 2.5
+"CA, San Luis Obispo County" TOU/Sample Time-of-Use Rate.json 9.7 0.088 0 3.1 0 3.9 0 0.0016 FeedInTariff 0.13 $ 7.5
+"CA, San Mateo County" TOU/Sample Time-of-Use Rate.json 8.3 0.101 0 2.1 0 3 0 0.0013 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Santa Barbara County" TOU/Sample Time-of-Use Rate.json 9 0.109 0 2.4 0 3.9 0 0.0012 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Santa Clara County" TOU/Sample Time-of-Use Rate.json 9 0.104 0 2.2 0 2.7 0 0.0018 FeedInTariff 0.13 $/kW 2.5
+"CA, Santa Cruz County" TOU/Sample Time-of-Use Rate.json 10.5 0.089 0 2.3 0 2.1 0 0.0017 FeedInTariff 0.13 $ 7.5
+"CA, Shasta County" TOU/Sample Time-of-Use Rate.json 10 0.099 0 3 0 2.7 0 0.0019 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Sierra County" TOU/Sample Time-of-Use Rate.json 9.8 0.092 0 3 0 2.3 0 0.0019 NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Siskiyou County" TOU/Sample Time-of-Use Rate.json 8 0.108 0 3.4 0 2.2 0 0.0014 FeedInTariff 0.13 $/kW 2.5
+"CA, Solano County" TOU/Sample Time-of-Use Rate.json 8.2 0.104 0 2.1 0 3.5 0 0.0011 FeedInTariff 0.13 $ 7.5
+"CA, Sonoma County" TOU/Sample Time-of-Use Rate.json 9.3 0.091 0 2.6 0 3.7 0 0.0011 NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Stanislaus County" NetMetering Retail Electricity Cost $/kW 2.5
+"CA, Sutter County" FeedInTariff 0.13 $/kW 2.5
+"CA, Tehama County" FeedInTariff 0.13 $ 7.5
+"CA, Trinity County" NetMetering User-Specified 0.035 $/kW 2.5
+"CA, Tulare County"
+"CA, Tuolumne County"
+"CA, Ventura County"
+"CA, Yolo County"
+"CA, Yuba County"
diff --git a/resources/data/detailed_rates/Flat/Sample Flat Rate.json b/resources/data/detailed_rates/Flat/Sample Flat Rate.json
new file mode 100644
index 0000000000..b5599f41f3
--- /dev/null
+++ b/resources/data/detailed_rates/Flat/Sample Flat Rate.json
@@ -0,0 +1,647 @@
+{
+ "items": [
+ {
+ "name": "Sample Tiered Rate",
+ "sector": "Residential",
+ "description": "Sample file defined by BEopt.",
+ "fixedchargeunits": "$/month",
+ "fixedchargefirstmeter": 8,
+ "energyweekdayschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyweekendschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyratestructure": [
+ [
+ {
+ "rate": 0.1195179675994109,
+ "unit": "kWh"
+ }
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/data/detailed_rates/README.md b/resources/data/detailed_rates/README.md
new file mode 100644
index 0000000000..a657f48fc8
--- /dev/null
+++ b/resources/data/detailed_rates/README.md
@@ -0,0 +1,7 @@
+In the YML file's "detailed_filepath" field for utility bill scenario definitions, enter a relative file path to a TSV lookup file (e.g., "data/detailed_rates/County.tsv") containing user-defined values corresponding to arguments for electricity tariff file paths, fixed costs and marginal rates for fuels, and PV.
+The first column of the TSV lookup file contains the name of a chosen parameter for which sets of argument values are assigned according to its options.
+The TSV lookup file's electricity tariff file paths are relative to the parent folder of the "detailed_filepath" (e.g., "Flat/Sample Flat Rate.json").
+Any blank fields, or missing options for a parameter not specified in the TSV lookup file, will be defaulted.
+
+See the Detailed section of OpenStudio-HPXML's documentation for [Electricity Rates](https://openstudio-hpxml.readthedocs.io/en/latest/workflow_inputs.html#electricity-rates), and [Fuel Rates](https://openstudio-hpxml.readthedocs.io/en/latest/workflow_inputs.html#fuel-rates), for more information about arguments for electricity tariff file paths, fixed charges, marginal rates, and PV.
+Refer to BuildStockBatch's documentation for [Residential HPXML Workflow Generator](https://buildstockbatch.readthedocs.io/en/stable/workflow_generators/residential_hpxml.html) for more information about YML file arguments.
diff --git a/resources/data/detailed_rates/RTP/Sample Real-Time Pricing Rate.json b/resources/data/detailed_rates/RTP/Sample Real-Time Pricing Rate.json
new file mode 100644
index 0000000000..5cebbc8c2f
--- /dev/null
+++ b/resources/data/detailed_rates/RTP/Sample Real-Time Pricing Rate.json
@@ -0,0 +1,8774 @@
+{
+ "items": [
+ {
+ "description": "Sample file defined by BEopt.",
+ "fixedchargeunits": "$/month",
+ "fixedchargefirstmeter": 9,
+ "name": "Sample Real-Time Pricing Rate",
+ "realtimepricing": [
+ 0.04625,
+ 0.0444,
+ 0.03885,
+ 0.0407,
+ 0.0296,
+ 0.03885,
+ 0.0407,
+ 0.0407,
+ 0.0407,
+ 0.0444,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.0629,
+ 0.0592,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0666,
+ 0.06845,
+ 0.06105,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.01295,
+ 0.03145,
+ 0.0148,
+ 0.037,
+ 0.01295,
+ 0.0555,
+ 0.05365,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.037,
+ 0.0407,
+ 0.0481,
+ 0.0481,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.07215,
+ 0.06845,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.0333,
+ 0.05365,
+ 0.06845,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.07585,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.0222,
+ 0.02775,
+ 0.037,
+ 0.0296,
+ 0.0333,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05365,
+ 0.0481,
+ 0.04255,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.04255,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.2331,
+ 0.09065,
+ 0.0666,
+ 0.06105,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.074,
+ 0.1591,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.0444,
+ 0.00185,
+ 0.0444,
+ 0.03145,
+ 0.0259,
+ 0.04255,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0518,
+ 0.07585,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.07585,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.0407,
+ 0.037,
+ 0.04255,
+ 0.03885,
+ 0.03145,
+ 0.03885,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.06105,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0555,
+ 0.0555,
+ 0.0481,
+ 0.0407,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.0407,
+ 0.037,
+ 0.0037,
+ 0.0074,
+ 0.00185,
+ 0.0185,
+ 0.01295,
+ 0.0407,
+ 0.0333,
+ 0.05365,
+ 0.05735,
+ 0.04995,
+ 0.05365,
+ 0.04995,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0703,
+ 0.05735,
+ 0.05365,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.037,
+ 0.03885,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.0407,
+ 0.0333,
+ 0.04625,
+ 0.08325,
+ 0.06105,
+ 0.0666,
+ 0.0629,
+ 0.07955,
+ 0.0666,
+ 0.06475,
+ 0.0666,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.06475,
+ 0.07215,
+ 0.06845,
+ 0.06475,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.05365,
+ 0.05735,
+ 0.07215,
+ 0.06475,
+ 0.06845,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.0703,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0481,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0703,
+ 0.06845,
+ 0.0629,
+ 0.0555,
+ 0.0518,
+ 0.04255,
+ 0.04625,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.0555,
+ 0.0592,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.037,
+ 0.03885,
+ 0.0333,
+ 0.0333,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0481,
+ 0.03885,
+ 0.03515,
+ 0.04255,
+ 0.0333,
+ 0.03145,
+ 0.04995,
+ 0.0555,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.037,
+ 0.0296,
+ 0.00185,
+ 0.03885,
+ 0.02775,
+ 0.0407,
+ 0.0407,
+ 0.0444,
+ 0.04255,
+ 0.04625,
+ 0.0518,
+ 0.0407,
+ 0.0444,
+ 0.04255,
+ 0.04255,
+ 0.0444,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.03515,
+ 0.02035,
+ 0.0148,
+ 0.0111,
+ 0.02775,
+ 0.04255,
+ 0.05735,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.06845,
+ 0.074,
+ 0.0666,
+ 0.0629,
+ 0.0629,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.02775,
+ 0.1665,
+ 0.36075,
+ 0.0518,
+ 0.0555,
+ 0.22015,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.06475,
+ 0.0592,
+ 0.0703,
+ 0.11655,
+ 0.2738,
+ 0.1147,
+ 0.11285,
+ 0.09435,
+ 0.06475,
+ 0.0703,
+ 0.0703,
+ 0.06105,
+ 0.0555,
+ 0.0481,
+ 0.05365,
+ 0.0703,
+ 0.27935,
+ 0.13135,
+ 0.07585,
+ 0.0629,
+ 0.09065,
+ 0.0814,
+ 0.07955,
+ 0.06475,
+ 0.08325,
+ 0.074,
+ 0.0703,
+ 0.05365,
+ 0.0851,
+ 0.05735,
+ 0.04625,
+ 0.03515,
+ 0.0555,
+ 0.03145,
+ 0.0555,
+ 0.0481,
+ 0.05365,
+ 0.04995,
+ 0.0407,
+ 0.0555,
+ 0.07215,
+ 0.06475,
+ 0.09805,
+ 0.0962,
+ 0.09065,
+ 0.07585,
+ 0.07585,
+ 0.06845,
+ 0.06845,
+ 0.07215,
+ 0.074,
+ 0.1517,
+ 0.10545,
+ 0.09065,
+ 0.0814,
+ 0.09435,
+ 0.0703,
+ 0.0629,
+ 0.0555,
+ 0.0629,
+ 0.06475,
+ 0.037,
+ 0.0481,
+ 0.0555,
+ 0.1036,
+ 0.1369,
+ 0.1406,
+ 0.2701,
+ 0.60865,
+ 0.17575,
+ 0.1184,
+ 0.08325,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.0777,
+ 0.0703,
+ 0.0666,
+ 0.08695,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.07215,
+ 0.0703,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.0666,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.0444,
+ 0.0481,
+ 0.0444,
+ 0.0407,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0518,
+ 0.04625,
+ 0.03515,
+ 0.0407,
+ 0.04255,
+ 0.03885,
+ 0.04255,
+ 0.04255,
+ 0.0333,
+ 0.0518,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.05365,
+ 0.0666,
+ 0.0555,
+ 0.05735,
+ 0.0518,
+ 0.04625,
+ 0.03145,
+ 0.02775,
+ 0.0259,
+ 0.03515,
+ 0.02035,
+ 0.0296,
+ 0.0222,
+ 0.0444,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.1147,
+ 0.0629,
+ 0.0629,
+ 0.0518,
+ 0.0481,
+ 0.04255,
+ 0.0222,
+ 0.0444,
+ 0.0407,
+ 0.03515,
+ 0.037,
+ 0.0444,
+ 0.05735,
+ 0.0629,
+ 0.074,
+ 0.0555,
+ 0.05735,
+ 0.0518,
+ 0.0333,
+ 0.037,
+ 0.0222,
+ 0.03145,
+ 0.0481,
+ 0.05365,
+ 0.05365,
+ 0.0962,
+ 0.08695,
+ 0.0629,
+ 0.06105,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.05365,
+ 0.1702,
+ 0.0888,
+ 0.0999,
+ 0.0777,
+ 0.08325,
+ 0.074,
+ 0.0703,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0925,
+ 0.22755,
+ 0.0814,
+ 0.08695,
+ 0.07955,
+ 0.07955,
+ 0.0703,
+ 0.0592,
+ 0.05735,
+ 0.04995,
+ 0.05365,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.0592,
+ 0.0666,
+ 0.0592,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0629,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.0666,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0518,
+ 0.0851,
+ 0.06475,
+ 0.06845,
+ 0.0814,
+ 0.08695,
+ 0.0777,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.06845,
+ 0.1295,
+ 0.0999,
+ 0.07955,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.03145,
+ 0.06475,
+ 0.05735,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0629,
+ 0.07585,
+ 0.10175,
+ 0.07585,
+ 0.07585,
+ 0.0703,
+ 0.0518,
+ 0.04625,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.06475,
+ 0.0592,
+ 0.06845,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0555,
+ 0.07955,
+ 0.06475,
+ 0.0666,
+ 0.0592,
+ 0.0518,
+ 0.05365,
+ 0.03145,
+ 0.00925,
+ 0.05365,
+ 0.01665,
+ 0.04625,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.0703,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.06475,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.03515,
+ 0.03885,
+ 0.03145,
+ 0.03145,
+ 0.04255,
+ 0.0592,
+ 0.0666,
+ 0.0629,
+ 0.0703,
+ 0.0703,
+ 0.0814,
+ 0.0666,
+ 0.06845,
+ 0.06475,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.06475,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0666,
+ 0.0629,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0555,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.04255,
+ 0.0185,
+ 0.0111,
+ 0.02035,
+ 0.0333,
+ 0.00925,
+ 0.02405,
+ 0.0148,
+ 0.00555,
+ 0.0185,
+ 0.03885,
+ 0.037,
+ 0.0555,
+ 0.0555,
+ 0.04625,
+ 0.0407,
+ 0.0444,
+ 0.0518,
+ 0.05735,
+ 0.0666,
+ 0.0777,
+ 0.0592,
+ 0.05365,
+ 0.0481,
+ 0.04255,
+ 0.0444,
+ 0.04255,
+ 0.03885,
+ 0.03515,
+ 0.0444,
+ 0.04255,
+ 0.05735,
+ 0.06845,
+ 0.0666,
+ 0.0629,
+ 0.05735,
+ 0.06105,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05735,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.02775,
+ 0.04255,
+ 0.04625,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.04995,
+ 0.07215,
+ 0.0518,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.07585,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.0481,
+ 0.0518,
+ 0.074,
+ 0.0629,
+ 0.06105,
+ 0.0629,
+ 0.06845,
+ 0.0666,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.05735,
+ 0.05365,
+ 0.06105,
+ 0.06845,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.0481,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.05365,
+ 0.06105,
+ 0.074,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0777,
+ 0.06105,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0555,
+ 0.0777,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.06105,
+ 0.06475,
+ 0.05735,
+ 0.05365,
+ 0.0481,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0592,
+ 0.06475,
+ 0.06475,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.05735,
+ 0.0555,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.0592,
+ 0.0851,
+ 0.06105,
+ 0.0703,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.03515,
+ 0.04625,
+ 0.0444,
+ 0.037,
+ 0.04995,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.04625,
+ 0.0629,
+ 0.05735,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.0407,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.03145,
+ 0.0407,
+ 0.04625,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.01665,
+ 0.08325,
+ 0.06845,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.07215,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.0518,
+ 0.0555,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.04255,
+ 0.04255,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.0703,
+ 0.10545,
+ 0.0925,
+ 0.11655,
+ 0.13505,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.06475,
+ 0.0777,
+ 0.05735,
+ 0.06105,
+ 0.07215,
+ 0.07215,
+ 0.06475,
+ 0.06845,
+ 0.06475,
+ 0.0629,
+ 0.05365,
+ 0.0592,
+ 0.0703,
+ 0.0703,
+ 0.07585,
+ 0.0518,
+ 0.0555,
+ 0.04255,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.0629,
+ 0.0703,
+ 0.0703,
+ 0.06845,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0555,
+ 0.0518,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.05365,
+ 0.0592,
+ 0.0666,
+ 0.0666,
+ 0.07215,
+ 0.06845,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.0666,
+ 0.0777,
+ 0.0925,
+ 0.06475,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.06475,
+ 0.1036,
+ 0.08695,
+ 0.074,
+ 0.0703,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.08325,
+ 0.07215,
+ 0.0666,
+ 0.0592,
+ 0.04995,
+ 0.0481,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.11655,
+ 0.07215,
+ 0.17205,
+ 0.0629,
+ 0.06845,
+ 0.0703,
+ 0.0703,
+ 0.0703,
+ 0.06845,
+ 0.0777,
+ 0.08695,
+ 0.0851,
+ 0.0814,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0777,
+ 0.0629,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.06105,
+ 0.06475,
+ 0.0814,
+ 0.07215,
+ 0.0629,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.0629,
+ 0.06845,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.0666,
+ 0.0666,
+ 0.06845,
+ 0.0666,
+ 0.06845,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.0703,
+ 0.06475,
+ 0.06475,
+ 0.0666,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0666,
+ 0.0777,
+ 0.07215,
+ 0.0703,
+ 0.06475,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0666,
+ 0.16835,
+ 0.0814,
+ 0.0814,
+ 0.07585,
+ 0.0703,
+ 0.0666,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.0814,
+ 0.0777,
+ 0.07955,
+ 0.07955,
+ 0.08695,
+ 0.07215,
+ 0.06845,
+ 0.0592,
+ 0.06845,
+ 0.0629,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0814,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.07955,
+ 0.14985,
+ 0.0999,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.04255,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0666,
+ 0.10915,
+ 0.0999,
+ 0.0666,
+ 0.0555,
+ 0.06105,
+ 0.0629,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0629,
+ 0.05735,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0555,
+ 0.03885,
+ 0.0296,
+ 0.0444,
+ 0.0518,
+ 0.09805,
+ 0.07585,
+ 0.05735,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.0592,
+ 0.0592,
+ 0.0703,
+ 0.06845,
+ 0.0629,
+ 0.0333,
+ 0.0333,
+ 0.04255,
+ 0.0259,
+ 0.0407,
+ 0.0407,
+ 0.0333,
+ 0.03515,
+ 0.037,
+ 0.05365,
+ 0.06105,
+ 0.0814,
+ 0.0703,
+ 0.0703,
+ 0.06475,
+ 0.06845,
+ 0.0629,
+ 0.0555,
+ 0.0592,
+ 0.0555,
+ 0.06105,
+ 0.07955,
+ 0.0962,
+ 0.0666,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0444,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0592,
+ 0.07955,
+ 0.0703,
+ 0.0666,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.0185,
+ 0.0555,
+ 0.0518,
+ 0.0592,
+ 0.0629,
+ 0.06845,
+ 0.07215,
+ 0.0592,
+ 0.05365,
+ 0.04625,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.05735,
+ 0.06475,
+ 0.0925,
+ 0.0962,
+ 0.07585,
+ 0.074,
+ 0.06105,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06845,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.0518,
+ 0.0555,
+ 0.0444,
+ 0.04255,
+ 0.04255,
+ 0.05365,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.04255,
+ 0.0444,
+ 0.04625,
+ 0.0888,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0444,
+ 0.0407,
+ 0.03145,
+ 0.0222,
+ 0.03885,
+ 0.02775,
+ 0.02405,
+ 0.0259,
+ 0.04255,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.0444,
+ 0.03885,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0666,
+ 0.0592,
+ 0.05365,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0666,
+ 0.07215,
+ 0.07215,
+ 0.0703,
+ 0.08695,
+ 0.0703,
+ 0.07215,
+ 0.06845,
+ 0.0592,
+ 0.0555,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.08695,
+ 0.07585,
+ 0.06475,
+ 0.04995,
+ 0.0481,
+ 0.03145,
+ 0.04625,
+ 0.0259,
+ 0.03885,
+ 0.0333,
+ 0.04255,
+ 0.07215,
+ 0.0888,
+ 0.074,
+ 0.0777,
+ 0.0777,
+ 0.074,
+ 0.07215,
+ 0.06475,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0592,
+ 0.09065,
+ 0.0666,
+ 0.05365,
+ 0.0481,
+ 0.02035,
+ 0.0259,
+ 0.0185,
+ 0.0407,
+ 0.0296,
+ 0.0407,
+ 0.0629,
+ 0.0851,
+ 0.074,
+ 0.0629,
+ 0.06845,
+ 0.0629,
+ 0.06845,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.13875,
+ 0.1184,
+ 0.07585,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0518,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.06475,
+ 0.0925,
+ 0.1702,
+ 0.1554,
+ 0.10545,
+ 0.12395,
+ 0.08325,
+ 0.0777,
+ 0.0777,
+ 0.06845,
+ 0.06475,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.07215,
+ 0.07215,
+ 0.07955,
+ 0.0629,
+ 0.0592,
+ 0.0555,
+ 0.03145,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.03885,
+ 0.0703,
+ 0.07215,
+ 0.07215,
+ 0.07955,
+ 0.07215,
+ 0.0666,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0666,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.10915,
+ 0.0814,
+ 0.09805,
+ 0.07585,
+ 0.0666,
+ 0.07215,
+ 0.08695,
+ 0.0629,
+ 0.0629,
+ 0.07585,
+ 0.06845,
+ 0.0777,
+ 0.0703,
+ 0.08695,
+ 0.07215,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0629,
+ 0.0592,
+ 0.0999,
+ 0.0777,
+ 0.08695,
+ 0.0814,
+ 0.06475,
+ 0.0592,
+ 0.0629,
+ 0.0407,
+ 0.06845,
+ 0.06105,
+ 0.07585,
+ 0.09805,
+ 0.0814,
+ 0.074,
+ 0.04995,
+ 0.03515,
+ 0.06105,
+ 0.0407,
+ 0.0629,
+ 0.0592,
+ 0.0703,
+ 0.111,
+ 0.10915,
+ 0.1258,
+ 0.13135,
+ 0.14615,
+ 0.20905,
+ 0.11655,
+ 0.12025,
+ 0.111,
+ 0.07215,
+ 0.0703,
+ 0.074,
+ 0.09805,
+ 0.13505,
+ 0.12025,
+ 0.1258,
+ 0.07215,
+ 0.07215,
+ 0.0518,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0629,
+ 0.0666,
+ 0.11655,
+ 0.14245,
+ 0.111,
+ 0.1406,
+ 0.0703,
+ 0.1221,
+ 0.07215,
+ 0.0666,
+ 0.07215,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.3515,
+ 0.0851,
+ 0.0814,
+ 0.0777,
+ 0.06475,
+ 0.06105,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.09065,
+ 0.0888,
+ 0.0777,
+ 0.07585,
+ 0.09065,
+ 0.0888,
+ 0.074,
+ 0.074,
+ 0.06845,
+ 0.0666,
+ 0.06845,
+ 0.0703,
+ 0.0703,
+ 0.07585,
+ 0.185,
+ 0.3959,
+ 0.0777,
+ 0.0703,
+ 0.0629,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.0777,
+ 0.0925,
+ 0.12025,
+ 0.13875,
+ 0.2331,
+ 0.09065,
+ 0.1295,
+ 0.1369,
+ 0.0777,
+ 0.07585,
+ 0.07955,
+ 0.0888,
+ 0.0666,
+ 0.10915,
+ 0.10915,
+ 0.1517,
+ 0.12765,
+ 0.10175,
+ 0.09805,
+ 0.09065,
+ 0.0888,
+ 0.0888,
+ 0.0777,
+ 0.12765,
+ 0.08325,
+ 0.2997,
+ 0.11285,
+ 0.09805,
+ 0.0777,
+ 0.16465,
+ 0.07955,
+ 0.10915,
+ 0.0851,
+ 0.07585,
+ 0.06845,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.07215,
+ 0.0777,
+ 0.07215,
+ 0.0666,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.074,
+ 0.06845,
+ 0.06475,
+ 0.0814,
+ 0.0777,
+ 0.06475,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.05735,
+ 0.0629,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.0518,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0962,
+ 0.06105,
+ 0.07215,
+ 0.0629,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.0333,
+ 0.0555,
+ 0.037,
+ 0.05735,
+ 0.0814,
+ 0.07585,
+ 0.08325,
+ 0.1147,
+ 0.09435,
+ 0.0888,
+ 0.10545,
+ 0.11655,
+ 0.0925,
+ 0.07955,
+ 0.0851,
+ 0.0851,
+ 0.074,
+ 0.07585,
+ 0.08695,
+ 0.1036,
+ 0.0703,
+ 0.06845,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.07215,
+ 0.07585,
+ 0.08325,
+ 0.07955,
+ 0.07955,
+ 0.0777,
+ 0.0851,
+ 0.08695,
+ 0.08695,
+ 0.0777,
+ 0.07585,
+ 0.07215,
+ 0.07215,
+ 0.074,
+ 0.07215,
+ 0.0814,
+ 0.08695,
+ 0.06845,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.07215,
+ 0.07585,
+ 0.08325,
+ 0.07955,
+ 0.07955,
+ 0.0777,
+ 0.0851,
+ 0.08695,
+ 0.08695,
+ 0.0777,
+ 0.07585,
+ 0.07215,
+ 0.07215,
+ 0.074,
+ 0.07215,
+ 0.0814,
+ 0.08695,
+ 0.06845,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.0592,
+ 0.06845,
+ 0.06475,
+ 0.06845,
+ 0.0814,
+ 0.0777,
+ 0.0962,
+ 0.07955,
+ 0.05735,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.06105,
+ 0.0518,
+ 0.0481,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.06475,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.06105,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.05735,
+ 0.06845,
+ 0.0592,
+ 0.0518,
+ 0.0592,
+ 0.06475,
+ 0.0888,
+ 0.0629,
+ 0.0703,
+ 0.06845,
+ 0.0851,
+ 0.09435,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06105,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.09435,
+ 0.07215,
+ 0.0629,
+ 0.05365,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.06475,
+ 0.05735,
+ 0.04995,
+ 0.04995,
+ 0.0444,
+ 0.03515,
+ 0.0444,
+ 0.03145,
+ 0.03885,
+ 0.05365,
+ 0.05365,
+ 0.0444,
+ 0.0481,
+ 0.03515,
+ 0.04625,
+ 0.02035,
+ 0.00925,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.0555,
+ 0.06105,
+ 0.07955,
+ 0.0629,
+ 0.06475,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0518,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.05365,
+ 0.0592,
+ 0.07955,
+ 0.09065,
+ 0.074,
+ 0.06475,
+ 0.09805,
+ 0.074,
+ 0.0703,
+ 0.0666,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.0555,
+ 0.0703,
+ 0.14615,
+ 0.0814,
+ 0.0666,
+ 0.0629,
+ 0.0481,
+ 0.04255,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0592,
+ 0.11655,
+ 0.1073,
+ 0.09065,
+ 0.06475,
+ 0.07215,
+ 0.07585,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.0555,
+ 0.0592,
+ 0.0555,
+ 0.04995,
+ 0.06105,
+ 0.1147,
+ 0.07215,
+ 0.06845,
+ 0.037,
+ 0.0407,
+ 0.02775,
+ 0.03885,
+ 0.0333,
+ 0.0481,
+ 0.0666,
+ 0.10915,
+ 0.1702,
+ 0.0629,
+ 0.07215,
+ 0.10545,
+ 0.07585,
+ 0.06475,
+ 0.06475,
+ 0.06845,
+ 0.0629,
+ 0.0629,
+ 0.0666,
+ 0.0925,
+ 0.06845,
+ 0.111,
+ 0.09435,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.04625,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.07215,
+ 0.0629,
+ 0.06845,
+ 0.07585,
+ 0.0629,
+ 0.07585,
+ 0.074,
+ 0.06845,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.05365,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.04625,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0777,
+ 0.06845,
+ 0.0555,
+ 0.05735,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.05735,
+ 0.08695,
+ 0.0629,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0703,
+ 0.06845,
+ 0.0481,
+ 0.04995,
+ 0.0074,
+ 0.0481,
+ 0.0481,
+ 0.04255,
+ 0.0444,
+ 0.0518,
+ 0.074,
+ 0.074,
+ 0.0777,
+ 0.06105,
+ 0.07585,
+ 0.07585,
+ 0.0777,
+ 0.09065,
+ 0.09435,
+ 0.0851,
+ 0.10545,
+ 0.08695,
+ 0.0592,
+ 0.08325,
+ 0.0888,
+ 0.0777,
+ 0.06475,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.01665,
+ 0.04255,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.0666,
+ 0.0666,
+ 0.0629,
+ 0.2183,
+ 0.0666,
+ 0.0666,
+ 0.0518,
+ 0.04625,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.0666,
+ 0.111,
+ 0.185,
+ 0.07955,
+ 0.0851,
+ 0.12765,
+ 0.10915,
+ 0.1702,
+ 0.15355,
+ 0.04995,
+ 0.06475,
+ 0.08325,
+ 0.07585,
+ 0.14615,
+ 0.05735,
+ 0.0592,
+ 0.0518,
+ 0.0555,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0555,
+ 0.0703,
+ 0.074,
+ 0.13875,
+ 0.07955,
+ 0.07955,
+ 0.0814,
+ 0.06845,
+ 0.0814,
+ 0.06105,
+ 0.09065,
+ 0.07215,
+ 0.0666,
+ 0.07955,
+ 0.07215,
+ 0.07215,
+ 0.07585,
+ 0.0555,
+ 0.0555,
+ 0.0481,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.04625,
+ 0.09065,
+ 0.0999,
+ 0.0777,
+ 0.07585,
+ 0.08325,
+ 0.0851,
+ 0.0962,
+ 0.0777,
+ 0.07585,
+ 0.06475,
+ 0.07215,
+ 0.07955,
+ 0.07955,
+ 0.08325,
+ 0.0851,
+ 0.0814,
+ 0.06845,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.0666,
+ 0.0703,
+ 0.08695,
+ 0.0666,
+ 0.0703,
+ 0.07215,
+ 0.0703,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.0666,
+ 0.14245,
+ 0.0925,
+ 0.07215,
+ 0.0629,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.05735,
+ 0.05365,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.07215,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.0185,
+ 0.01295,
+ 0.0444,
+ 0.04255,
+ 0.0481,
+ 0.07955,
+ 0.07585,
+ 0.074,
+ 0.0777,
+ 0.0703,
+ 0.06475,
+ 0.0666,
+ 0.06845,
+ 0.07215,
+ 0.0666,
+ 0.06845,
+ 0.08695,
+ 0.0888,
+ 0.074,
+ 0.08325,
+ 0.0851,
+ 0.05365,
+ 0.0555,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.0333,
+ 0.0407,
+ 0.04255,
+ 0.0851,
+ 0.074,
+ 0.07585,
+ 0.0777,
+ 0.0925,
+ 0.0888,
+ 0.0999,
+ 0.08695,
+ 0.0999,
+ 0.12025,
+ 0.10915,
+ 0.1073,
+ 0.08325,
+ 0.17205,
+ 0.09065,
+ 0.06475,
+ 0.0629,
+ 0.05365,
+ 0.0444,
+ 0.05735,
+ 0.04625,
+ 0.05365,
+ 0.05365,
+ 0.06475,
+ 0.1628,
+ 0.0888,
+ 0.11655,
+ 0.1036,
+ 0.0703,
+ 0.07585,
+ 0.0925,
+ 0.0851,
+ 0.111,
+ 0.0888,
+ 0.13135,
+ 0.09805,
+ 0.0888,
+ 0.074,
+ 0.09435,
+ 0.13875,
+ 0.0777,
+ 0.07215,
+ 0.05365,
+ 0.05365,
+ 0.0444,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.07585,
+ 0.12025,
+ 0.1036,
+ 0.1332,
+ 0.08695,
+ 0.074,
+ 0.0851,
+ 0.0777,
+ 0.07955,
+ 0.0814,
+ 0.07955,
+ 0.0777,
+ 0.06845,
+ 0.0703,
+ 0.0777,
+ 0.0814,
+ 0.06845,
+ 0.0666,
+ 0.0555,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.0925,
+ 0.06845,
+ 0.07585,
+ 0.08695,
+ 0.07955,
+ 0.0777,
+ 0.0777,
+ 0.08695,
+ 0.0777,
+ 0.0814,
+ 0.07955,
+ 0.074,
+ 0.07585,
+ 0.0666,
+ 0.07215,
+ 0.07955,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.07215,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.0666,
+ 0.07585,
+ 0.09805,
+ 0.09435,
+ 0.10175,
+ 0.0814,
+ 0.07955,
+ 0.07215,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.0962,
+ 0.0925,
+ 0.08325,
+ 0.0814,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06845,
+ 0.06475,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.06105,
+ 0.09065,
+ 0.074,
+ 0.06475,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.06845,
+ 0.1147,
+ 0.10175,
+ 0.07585,
+ 0.0851,
+ 0.1332,
+ 0.09435,
+ 0.10175,
+ 0.10175,
+ 0.07955,
+ 0.07955,
+ 0.0851,
+ 0.0703,
+ 0.0666,
+ 0.06475,
+ 0.09435,
+ 0.0777,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.07215,
+ 0.06845,
+ 0.0777,
+ 0.09065,
+ 0.07955,
+ 0.08325,
+ 0.07215,
+ 0.0851,
+ 0.0962,
+ 0.0888,
+ 0.09065,
+ 0.08325,
+ 0.0814,
+ 0.074,
+ 0.0999,
+ 0.0777,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0555,
+ 0.1036,
+ 0.09805,
+ 0.08695,
+ 0.0888,
+ 0.11655,
+ 0.0999,
+ 0.0925,
+ 0.08325,
+ 0.0925,
+ 0.09435,
+ 0.0851,
+ 0.0814,
+ 0.07955,
+ 0.0629,
+ 0.0777,
+ 0.09065,
+ 0.06475,
+ 0.06105,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0666,
+ 0.0703,
+ 0.06475,
+ 0.0703,
+ 0.07215,
+ 0.07215,
+ 0.06475,
+ 0.0703,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.1258,
+ 0.08325,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.0814,
+ 0.0851,
+ 0.08325,
+ 0.07955,
+ 0.0851,
+ 0.08695,
+ 0.07955,
+ 0.07585,
+ 0.08325,
+ 0.0814,
+ 0.0703,
+ 0.0629,
+ 0.06105,
+ 0.0666,
+ 0.07955,
+ 0.07585,
+ 0.0629,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0629,
+ 0.0666,
+ 0.0703,
+ 0.09065,
+ 0.111,
+ 0.111,
+ 0.0703,
+ 0.09065,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.0888,
+ 0.0703,
+ 0.0629,
+ 0.06105,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.0629,
+ 0.0629,
+ 0.0666,
+ 0.08695,
+ 0.06845,
+ 0.06475,
+ 0.0629,
+ 0.07955,
+ 0.07955,
+ 0.074,
+ 0.1036,
+ 0.07215,
+ 0.06475,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.04255,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0777,
+ 0.08695,
+ 0.0925,
+ 0.0962,
+ 0.08325,
+ 0.0888,
+ 0.13505,
+ 0.10545,
+ 0.0962,
+ 0.09065,
+ 0.10175,
+ 0.08325,
+ 0.074,
+ 0.06105,
+ 0.0666,
+ 0.07215,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.037,
+ 0.03885,
+ 0.02035,
+ 0.0333,
+ 0.03145,
+ 0.04995,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.08695,
+ 0.07215,
+ 0.06845,
+ 0.0814,
+ 0.0666,
+ 0.07215,
+ 0.074,
+ 0.0703,
+ 0.06845,
+ 0.0629,
+ 0.06845,
+ 0.07215,
+ 0.06105,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.03885,
+ 0.0222,
+ 0.0148,
+ 0.0518,
+ 0.05365,
+ 0.07585,
+ 0.074,
+ 0.0962,
+ 0.1221,
+ 0.09435,
+ 0.11285,
+ 0.09805,
+ 0.0814,
+ 0.08695,
+ 0.09065,
+ 0.08695,
+ 0.07955,
+ 0.0703,
+ 0.04625,
+ 0.10915,
+ 0.05735,
+ 0.0518,
+ 0.02405,
+ 0.0518,
+ 0.04625,
+ 0.02405,
+ 0.0037,
+ 0.0074,
+ 0.00185,
+ 0.0518,
+ 0.0518,
+ 0.0592,
+ 0.04995,
+ 0.0592,
+ 0.0481,
+ 0.05735,
+ 0.03145,
+ 0.05735,
+ 0.04995,
+ 0.0518,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.04625,
+ 0.05365,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.0481,
+ 0.0333,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.0481,
+ 0.07215,
+ 0.0629,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0481,
+ 0.0629,
+ 0.0555,
+ 0.04995,
+ 0.04625,
+ 0.03515,
+ 0.04625,
+ 0.0481,
+ 0.0444,
+ 0.0037,
+ 0.0222,
+ 0.01665,
+ 0.0555,
+ 0.06105,
+ 0.0444,
+ 0.0666,
+ 0.06475,
+ 0.06105,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.07585,
+ 0.06845,
+ 0.0629,
+ 0.05735,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.01665,
+ 0.00185,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.06475,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.04255,
+ 0.0444,
+ 0.0296,
+ 0.0444,
+ 0.04625,
+ 0.0296,
+ 0.07585,
+ 0.06105,
+ 0.0666,
+ 0.09065,
+ 0.08695,
+ 0.1073,
+ 0.074,
+ 0.06475,
+ 0.0666,
+ 0.0814,
+ 0.0851,
+ 0.07585,
+ 0.074,
+ 0.06845,
+ 0.0666,
+ 0.0666,
+ 0.05735,
+ 0.0481,
+ 0.0555,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.02405,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0703,
+ 0.06845,
+ 0.10915,
+ 0.07215,
+ 0.13505,
+ 0.1258,
+ 0.0814,
+ 0.0888,
+ 0.111,
+ 0.0703,
+ 0.07955,
+ 0.074,
+ 0.0629,
+ 0.0518,
+ 0.0481,
+ 0.03885,
+ 0.0185,
+ 0.03145,
+ 0.00185,
+ 0.05735,
+ 0.0592,
+ 0.0703,
+ 0.0851,
+ 0.09065,
+ 0.08695,
+ 0.0888,
+ 0.10915,
+ 0.09805,
+ 0.074,
+ 0.09065,
+ 0.0851,
+ 0.0962,
+ 0.074,
+ 0.03145,
+ 0.0592,
+ 0.08325,
+ 0.06845,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.00555,
+ 0.04625,
+ 0.00185,
+ 0.06475,
+ 0.0629,
+ 0.0777,
+ 0.0814,
+ 0.074,
+ 0.07215,
+ 0.074,
+ 0.0777,
+ 0.074,
+ 0.06475,
+ 0.0777,
+ 0.06105,
+ 0.0666,
+ 0.05365,
+ 0.08695,
+ 0.0333,
+ 0.00185,
+ 0.02035,
+ 0.0481,
+ 0.0407,
+ 0.00555,
+ 0.04625,
+ 0.03145,
+ 0.05365,
+ 0.0666,
+ 0.06105,
+ 0.0666,
+ 0.06475,
+ 0.06845,
+ 0.0703,
+ 0.0666,
+ 0.0518,
+ 0.0592,
+ 0.05365,
+ 0.06475,
+ 0.0629,
+ 0.06475,
+ 0.07215,
+ 0.0666,
+ 0.0629,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.00555,
+ 0.0518,
+ 0.03145,
+ 0.04995,
+ 0.0518,
+ 0.0407,
+ 0.06105,
+ 0.07955,
+ 0.04255,
+ 0.05735,
+ 0.04625,
+ 0.0444,
+ 0.03145,
+ 0.05735,
+ 0.05735,
+ 0.0296,
+ 0.0481,
+ 0.0259,
+ 0.04995,
+ 0.0666,
+ 0.0592,
+ 0.05365,
+ 0.0296,
+ 0.03885,
+ 0.0333,
+ 0.02035,
+ 0.03515,
+ 0.0444,
+ 0.0296,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0222,
+ 0.04255,
+ 0.0296,
+ 0.0481,
+ 0.07585,
+ 0.074,
+ 0.0592,
+ 0.0518,
+ 0.037,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0407,
+ 0.06845,
+ 0.06845,
+ 0.06845,
+ 0.07215,
+ 0.07215,
+ 0.074,
+ 0.06475,
+ 0.06475,
+ 0.06845,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.07955,
+ 0.074,
+ 0.05735,
+ 0.03885,
+ 0.00185,
+ 0.0185,
+ 0.01295,
+ 0.00185,
+ 0.01665,
+ 0.00185,
+ 0.01665,
+ 0.03885,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06475,
+ 0.06475,
+ 0.06475,
+ 0.07215,
+ 0.07585,
+ 0.0666,
+ 0.0629,
+ 0.0666,
+ 0.0703,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.0518,
+ 0.04255,
+ 0.0407,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.08325,
+ 0.0851,
+ 0.07215,
+ 0.07585,
+ 0.0888,
+ 0.3589,
+ 0.1147,
+ 0.1665,
+ 0.0814,
+ 0.0814,
+ 0.10545,
+ 0.0666,
+ 0.06105,
+ 0.05735,
+ 0.0518,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0555,
+ 0.0555,
+ 0.06475,
+ 0.07585,
+ 0.0777,
+ 0.07955,
+ 0.07215,
+ 0.074,
+ 0.0888,
+ 0.0814,
+ 0.09065,
+ 0.08325,
+ 0.0703,
+ 0.07585,
+ 0.0777,
+ 0.0703,
+ 0.06845,
+ 0.05735,
+ 0.04995,
+ 0.05365,
+ 0.04995,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0259,
+ 0.04995,
+ 0.05735,
+ 0.0592,
+ 0.0703,
+ 0.0777,
+ 0.06845,
+ 0.12395,
+ 0.074,
+ 0.09065,
+ 0.0962,
+ 0.0666,
+ 0.06105,
+ 0.06475,
+ 0.0555,
+ 0.0666,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0444,
+ 0.0444,
+ 0.00925,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0555,
+ 0.06105,
+ 0.07215,
+ 0.07215,
+ 0.07955,
+ 0.07955,
+ 0.06105,
+ 0.0703,
+ 0.06845,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0407,
+ 0.01665,
+ 0.02775,
+ 0.04255,
+ 0.03885,
+ 0.0444,
+ 0.05365,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.06475,
+ 0.06845,
+ 0.07585,
+ 0.0777,
+ 0.08695,
+ 0.0925,
+ 0.0851,
+ 0.06845,
+ 0.07215,
+ 0.0851,
+ 0.0592,
+ 0.05735,
+ 0.04995,
+ 0.03145,
+ 0.0444,
+ 0.04625,
+ 0.0444,
+ 0.0629,
+ 0.0592,
+ 0.07585,
+ 0.09805,
+ 0.0814,
+ 0.0777,
+ 0.09805,
+ 0.13505,
+ 0.11655,
+ 0.13135,
+ 0.1517,
+ 0.259,
+ 0.16835,
+ 0.1628,
+ 0.12765,
+ 0.1073,
+ 0.1739,
+ 0.0851,
+ 0.074,
+ 0.0703,
+ 0.0481,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.0481,
+ 0.07585,
+ 0.0888,
+ 0.0962,
+ 0.1295,
+ 0.1628,
+ 0.1332,
+ 0.1258,
+ 0.14615,
+ 0.1258,
+ 0.10175,
+ 0.08695,
+ 0.09805,
+ 0.11655,
+ 0.0999,
+ 0.0703,
+ 0.0518,
+ 0.0703,
+ 0.0518,
+ 0.0518,
+ 0.00185,
+ 0.0518,
+ 0.0444,
+ 0.04625,
+ 0.00185,
+ 0.07585,
+ 0.06845,
+ 0.09065,
+ 0.07585,
+ 0.08325,
+ 0.07955,
+ 0.1369,
+ 0.0925,
+ 0.10915,
+ 0.08695,
+ 0.07955,
+ 0.0666,
+ 0.06845,
+ 0.06475,
+ 0.06845,
+ 0.0814,
+ 0.05365,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.0296,
+ 0.05365,
+ 0.05365,
+ 0.06105,
+ 0.0592,
+ 0.0666,
+ 0.0592,
+ 0.03515,
+ 0.06105,
+ 0.06105,
+ 0.0666,
+ 0.0518,
+ 0.0481,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04625,
+ 0.0481,
+ 0.0296,
+ 0.0259,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0518,
+ 0.0518,
+ 0.05735,
+ 0.05735,
+ 0.03885,
+ 0.04625,
+ 0.04625,
+ 0.0592,
+ 0.037,
+ 0.03145,
+ 0.03145,
+ 0.0296,
+ 0.04625,
+ 0.0259,
+ 0.02775,
+ 0.0481,
+ 0.0481,
+ 0.0407,
+ 0.0444,
+ 0.01665,
+ 0.03515,
+ 0.0037,
+ 0.0296,
+ 0.02405,
+ 0.00185,
+ 0.03145,
+ 0.05365,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0592,
+ 0.06105,
+ 0.0481,
+ 0.0333,
+ 0.0444,
+ 0.0444,
+ 0.02035,
+ 0.01295,
+ 0.02405,
+ 0.01295,
+ 0.00555,
+ 0.0222,
+ 0.03515,
+ 0.04995,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.04995,
+ 0.0555,
+ 0.04625,
+ 0.0222,
+ 0.02775,
+ 0.01295,
+ 0.00925,
+ 0.0185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.0222,
+ 0.0444,
+ 0.0481,
+ 0.0481,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0629,
+ 0.0629,
+ 0.05365,
+ 0.03885,
+ 0.0148,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.037,
+ 0.0407,
+ 0.05365,
+ 0.0555,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.07955,
+ 0.0814,
+ 0.0888,
+ 0.0888,
+ 0.23865,
+ 0.07955,
+ 0.14245,
+ 0.14985,
+ 0.1258,
+ 0.08695,
+ 0.0851,
+ 0.0666,
+ 0.06105,
+ 0.05365,
+ 0.0481,
+ 0.03145,
+ 0.03515,
+ 0.0185,
+ 0.0333,
+ 0.0407,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.0666,
+ 0.0629,
+ 0.07215,
+ 0.0888,
+ 0.0999,
+ 0.0851,
+ 0.12025,
+ 0.1147,
+ 0.07955,
+ 0.10175,
+ 0.11655,
+ 0.1628,
+ 0.0703,
+ 0.06105,
+ 0.05735,
+ 0.0259,
+ 0.02405,
+ 0.00925,
+ 0.0111,
+ 0.00185,
+ 0.02035,
+ 0.05365,
+ 0.0629,
+ 0.0777,
+ 0.07955,
+ 0.1147,
+ 0.1036,
+ 0.08325,
+ 0.0851,
+ 0.16095,
+ 0.12395,
+ 0.09065,
+ 0.09435,
+ 0.09435,
+ 0.0888,
+ 0.0888,
+ 0.08695,
+ 0.0851,
+ 0.0629,
+ 0.05365,
+ 0.0481,
+ 0.04255,
+ 0.0555,
+ 0.0296,
+ 0.06475,
+ 0.10915,
+ 0.08325,
+ 0.09805,
+ 0.11655,
+ 0.0888,
+ 0.0925,
+ 0.17205,
+ 0.0777,
+ 0.0851,
+ 0.04995,
+ 0.0444,
+ 0.0925,
+ 0.0851,
+ 0.0851,
+ 0.08325,
+ 0.0666,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04255,
+ 0.02035,
+ 0.0407,
+ 0.04255,
+ 0.04255,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.07215,
+ 0.0814,
+ 0.06475,
+ 0.0518,
+ 0.02405,
+ 0.0962,
+ 0.1221,
+ 0.04995,
+ 0.074,
+ 0.06845,
+ 0.06475,
+ 0.0296,
+ 0.06105,
+ 0.05365,
+ 0.0296,
+ 0.00555,
+ 0.00555,
+ 0.00185,
+ 0.0037,
+ 0.00185,
+ 0.00185,
+ 0.01665,
+ 0.03515,
+ 0.0333,
+ 0.03885,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.06105,
+ 0.0555,
+ 0.0407,
+ 0.0518,
+ 0.04625,
+ 0.04995,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.037,
+ 0.04255,
+ 0.02405,
+ 0.0259,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.0592,
+ 0.0666,
+ 0.0777,
+ 0.08325,
+ 0.07215,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.0444,
+ 0.0518,
+ 0.03145,
+ 0.0296,
+ 0.03145,
+ 0.00925,
+ 0.0222,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.0259,
+ 0.0444,
+ 0.04995,
+ 0.0259,
+ 0.04625,
+ 0.0703,
+ 0.0703,
+ 0.06845,
+ 0.0703,
+ 0.0777,
+ 0.07955,
+ 0.0777,
+ 0.07585,
+ 0.09435,
+ 0.0777,
+ 0.06845,
+ 0.06475,
+ 0.0666,
+ 0.0666,
+ 0.0555,
+ 0.0518,
+ 0.0444,
+ 0.04255,
+ 0.02775,
+ 0.02405,
+ 0.0444,
+ 0.0481,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.06105,
+ 0.06105,
+ 0.07215,
+ 0.0666,
+ 0.074,
+ 0.07955,
+ 0.1443,
+ 0.1739,
+ 0.0555,
+ 0.06475,
+ 0.06475,
+ 0.07215,
+ 0.07215,
+ 0.0592,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.05365,
+ 0.05735,
+ 0.0629,
+ 0.0777,
+ 0.05735,
+ 0.07955,
+ 0.0629,
+ 0.0777,
+ 0.06105,
+ 0.0629,
+ 0.0555,
+ 0.0481,
+ 0.05365,
+ 0.0629,
+ 0.04995,
+ 0.0555,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0111,
+ 0.0407,
+ 0.03515,
+ 0.03145,
+ 0.03145,
+ 0.0037,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.04995,
+ 0.0444,
+ 0.0333,
+ 0.04995,
+ 0.0333,
+ 0.00555,
+ 0.03145,
+ 0.02775,
+ 0.02405,
+ 0.0333,
+ 0.0481,
+ 0.0481,
+ 0.0555,
+ 0.0407,
+ 0.05365,
+ 0.04995,
+ 0.0555,
+ 0.0481,
+ 0.037,
+ 0.0481,
+ 0.05735,
+ 0.0555,
+ 0.04625,
+ 0.0629,
+ 0.05735,
+ 0.04255,
+ 0.0185,
+ 0.0074,
+ 0.0037,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.03515,
+ 0.04995,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0185,
+ 0.06475,
+ 0.0481,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.05365,
+ 0.06105,
+ 0.0555,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04995,
+ 0.04255,
+ 0.05365,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.06845,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.0666,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0407,
+ 0.00185,
+ 0.04255,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.05735,
+ 0.0629,
+ 0.06845,
+ 0.0888,
+ 0.09435,
+ 0.07215,
+ 0.0888,
+ 0.0888,
+ 0.0851,
+ 0.07585,
+ 0.074,
+ 0.06845,
+ 0.0703,
+ 0.0814,
+ 0.0629,
+ 0.05365,
+ 0.0481,
+ 0.0518,
+ 0.037,
+ 0.0148,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.06475,
+ 0.06105,
+ 0.0666,
+ 0.12395,
+ 0.06845,
+ 0.1036,
+ 0.11285,
+ 0.4403,
+ 0.07215,
+ 0.1443,
+ 0.0962,
+ 0.07215,
+ 0.0814,
+ 0.07955,
+ 0.08325,
+ 0.06475,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0444,
+ 0.0407,
+ 0.04625,
+ 0.04995,
+ 0.0407,
+ 0.04995,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.06845,
+ 0.0703,
+ 0.07955,
+ 0.07215,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.04255,
+ 0.0185,
+ 0.0444,
+ 0.0444,
+ 0.03885,
+ 0.0148,
+ 0.06475,
+ 0.05735,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0629,
+ 0.06105,
+ 0.08695,
+ 0.0703,
+ 0.07215,
+ 0.06845,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0481,
+ 0.03145,
+ 0.02035,
+ 0.0481,
+ 0.01295,
+ 0.00185,
+ 0.01665,
+ 0.04255,
+ 0.00185,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.06845,
+ 0.0703,
+ 0.06845,
+ 0.074,
+ 0.074,
+ 0.0777,
+ 0.0703,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.05365,
+ 0.03885,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.04255,
+ 0.03885,
+ 0.02775,
+ 0.0037,
+ 0.037,
+ 0.0481,
+ 0.0481,
+ 0.05365,
+ 0.06475,
+ 0.0777,
+ 0.06845,
+ 0.07215,
+ 0.0703,
+ 0.06845,
+ 0.0703,
+ 0.074,
+ 0.074,
+ 0.0814,
+ 0.12025,
+ 0.07215,
+ 0.06105,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.0555,
+ 0.0629,
+ 0.0888,
+ 0.11655,
+ 0.11655,
+ 0.12025,
+ 0.1813,
+ 0.16095,
+ 0.1147,
+ 0.1147,
+ 0.1036,
+ 0.09065,
+ 0.09065,
+ 0.10175,
+ 0.12395,
+ 0.07955,
+ 0.0629,
+ 0.0518,
+ 0.03885,
+ 0.0333,
+ 0.0444,
+ 0.00185,
+ 0.0185,
+ 0.02405,
+ 0.05365,
+ 0.0592,
+ 0.05735,
+ 0.04625,
+ 0.05735,
+ 0.0555,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.04255,
+ 0.04625,
+ 0.04625,
+ 0.02775,
+ 0.0037,
+ 0.0222,
+ 0.0333,
+ 0.00185,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.0703,
+ 0.0703,
+ 0.0666,
+ 0.0814,
+ 0.0814,
+ 0.07955,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.03885,
+ 0.0296,
+ 0.04255,
+ 0.02405,
+ 0.04255,
+ 0.04255,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.05735,
+ 0.06475,
+ 0.06845,
+ 0.074,
+ 0.09435,
+ 0.09065,
+ 0.09065,
+ 0.12395,
+ 0.1073,
+ 0.0851,
+ 0.09065,
+ 0.07215,
+ 0.06475,
+ 0.0592,
+ 0.0555,
+ 0.04625,
+ 0.04625,
+ 0.0111,
+ 0.0222,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.07585,
+ 0.06475,
+ 0.0703,
+ 0.0814,
+ 0.0851,
+ 0.0814,
+ 0.0666,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.04255,
+ 0.0444,
+ 0.0148,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.03515,
+ 0.04995,
+ 0.0592,
+ 0.0777,
+ 0.0777,
+ 0.074,
+ 0.06845,
+ 0.0703,
+ 0.07215,
+ 0.0703,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.0407,
+ 0.02775,
+ 0.02775,
+ 0.00185,
+ 0.00185,
+ 0.01295,
+ 0.00185,
+ 0.0296,
+ 0.06845,
+ 0.0962,
+ 0.08325,
+ 0.07955,
+ 0.0999,
+ 0.12765,
+ 0.0962,
+ 0.0777,
+ 0.07955,
+ 0.08325,
+ 0.074,
+ 0.06475,
+ 0.0555,
+ 0.0592,
+ 0.0555,
+ 0.0518,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0629,
+ 0.07955,
+ 0.09435,
+ 0.07215,
+ 0.0999,
+ 0.0666,
+ 0.11285,
+ 0.2109,
+ 0.14615,
+ 0.10175,
+ 0.09435,
+ 0.0814,
+ 0.0666,
+ 0.0666,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.02405,
+ 0.0185,
+ 0.0259,
+ 0.04255,
+ 0.00185,
+ 0.03145,
+ 0.0481,
+ 0.05735,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.0703,
+ 0.0925,
+ 0.1147,
+ 0.0925,
+ 0.06845,
+ 0.1147,
+ 0.12025,
+ 0.06475,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04255,
+ 0.037,
+ 0.037,
+ 0.0444,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.06475,
+ 0.07585,
+ 0.0962,
+ 0.0999,
+ 0.0777,
+ 0.0851,
+ 0.0777,
+ 0.07215,
+ 0.0703,
+ 0.0703,
+ 0.06845,
+ 0.06105,
+ 0.0592,
+ 0.0518,
+ 0.04995,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.06845,
+ 0.0777,
+ 0.06845,
+ 0.07955,
+ 0.08695,
+ 0.12025,
+ 0.09805,
+ 0.074,
+ 0.06475,
+ 0.0629,
+ 0.06475,
+ 0.06845,
+ 0.05365,
+ 0.0592,
+ 0.0518,
+ 0.05365,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.0555,
+ 0.0518,
+ 0.06475,
+ 0.074,
+ 0.09805,
+ 0.11655,
+ 0.0999,
+ 0.1295,
+ 0.0999,
+ 0.1036,
+ 0.08695,
+ 0.074,
+ 0.0629,
+ 0.06475,
+ 0.0703,
+ 0.06105,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.05735,
+ 0.0518,
+ 0.0444,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0555,
+ 0.05365,
+ 0.0592,
+ 0.06475,
+ 0.07585,
+ 0.07215,
+ 0.0814,
+ 0.06845,
+ 0.06475,
+ 0.06845,
+ 0.0666,
+ 0.06475,
+ 0.0555,
+ 0.05735,
+ 0.0629,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.04255,
+ 0.0259,
+ 0.03885,
+ 0.0407,
+ 0.0333,
+ 0.0444,
+ 0.04995,
+ 0.05735,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.06845,
+ 0.06845,
+ 0.07215,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.03145,
+ 0.03515,
+ 0.0444,
+ 0.04255,
+ 0.04625,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.04625,
+ 0.0481,
+ 0.0444,
+ 0.0407,
+ 0.02405,
+ 0.02405,
+ 0.03885,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.05735,
+ 0.06475,
+ 0.0777,
+ 0.0703,
+ 0.06845,
+ 0.07215,
+ 0.0703,
+ 0.0814,
+ 0.0703,
+ 0.06845,
+ 0.0629,
+ 0.0703,
+ 0.06475,
+ 0.05365,
+ 0.05365,
+ 0.0444,
+ 0.04625,
+ 0.0407,
+ 0.0296,
+ 0.04255,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.04255,
+ 0.0703,
+ 0.0777,
+ 0.08695,
+ 0.11655,
+ 0.09435,
+ 0.0888,
+ 0.09805,
+ 0.0814,
+ 0.0814,
+ 0.06845,
+ 0.06475,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0407,
+ 0.02405,
+ 0.03885,
+ 0.00925,
+ 0.02775,
+ 0.00185,
+ 0.00925,
+ 0.0407,
+ 0.0481,
+ 0.05365,
+ 0.05365,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0666,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.03885,
+ 0.0185,
+ 0.0185,
+ 0.0148,
+ 0.02405,
+ 0.02035,
+ 0.0444,
+ 0.0555,
+ 0.0666,
+ 0.06845,
+ 0.06475,
+ 0.09065,
+ 0.0703,
+ 0.0777,
+ 0.0777,
+ 0.09065,
+ 0.08325,
+ 0.0666,
+ 0.0666,
+ 0.06475,
+ 0.0666,
+ 0.0555,
+ 0.0518,
+ 0.0592,
+ 0.0481,
+ 0.0518,
+ 0.0481,
+ 0.04255,
+ 0.0259,
+ 0.02775,
+ 0.03885,
+ 0.0444,
+ 0.0666,
+ 0.0703,
+ 0.07215,
+ 0.08695,
+ 0.08695,
+ 0.1702,
+ 0.1924,
+ 0.12025,
+ 0.11655,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0851,
+ 0.0555,
+ 0.0518,
+ 0.04255,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.03145,
+ 0.0185,
+ 0.00925,
+ 0.02405,
+ 0.0481,
+ 0.0666,
+ 0.0592,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.06845,
+ 0.07215,
+ 0.0814,
+ 0.0629,
+ 0.06845,
+ 0.07215,
+ 0.074,
+ 0.0555,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.04255,
+ 0.03515,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0592,
+ 0.0629,
+ 0.07215,
+ 0.0814,
+ 0.09065,
+ 0.0814,
+ 0.1258,
+ 0.15725,
+ 0.10915,
+ 0.1073,
+ 0.1073,
+ 0.11285,
+ 0.09805,
+ 0.09435,
+ 0.0703,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.037,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0592,
+ 0.06845,
+ 0.0851,
+ 0.08695,
+ 0.08695,
+ 0.10915,
+ 0.09065,
+ 0.111,
+ 0.09805,
+ 0.0962,
+ 0.1036,
+ 0.08325,
+ 0.1184,
+ 0.13135,
+ 0.10915,
+ 0.08325,
+ 0.0666,
+ 0.0555,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.05735,
+ 0.0629,
+ 0.0703,
+ 0.0703,
+ 0.0999,
+ 0.0962,
+ 0.10175,
+ 0.0925,
+ 0.148,
+ 0.09805,
+ 0.1073,
+ 0.08325,
+ 0.1036,
+ 0.08695,
+ 0.07955,
+ 0.0888,
+ 0.0814,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.06475,
+ 0.0629,
+ 0.06475,
+ 0.06845,
+ 0.0814,
+ 0.10915,
+ 0.09065,
+ 0.13505,
+ 0.1036,
+ 0.09435,
+ 0.0888,
+ 0.07955,
+ 0.0703,
+ 0.07215,
+ 0.07215,
+ 0.0555,
+ 0.0518,
+ 0.05735,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.05735,
+ 0.0592,
+ 0.06845,
+ 0.07215,
+ 0.074,
+ 0.07215,
+ 0.0777,
+ 0.074,
+ 0.0814,
+ 0.08325,
+ 0.074,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.0481,
+ 0.0259,
+ 0.0111,
+ 0.0444,
+ 0.04625,
+ 0.03145,
+ 0.0444,
+ 0.05365,
+ 0.05735,
+ 0.08325,
+ 0.07955,
+ 0.08325,
+ 0.07955,
+ 0.07955,
+ 0.111,
+ 0.1073,
+ 0.148,
+ 0.07955,
+ 0.0814,
+ 0.08695,
+ 0.07955,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.04625,
+ 0.0444,
+ 0.037,
+ 0.03515,
+ 0.03515,
+ 0.00555,
+ 0.05365,
+ 0.06475,
+ 0.1036,
+ 0.1073,
+ 0.1184,
+ 0.1073,
+ 0.0962,
+ 0.09805,
+ 0.10915,
+ 0.19795,
+ 0.1813,
+ 0.13135,
+ 0.18315,
+ 0.22015,
+ 0.0962,
+ 0.07955,
+ 0.0666,
+ 0.0592,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.06105,
+ 0.0777,
+ 0.13135,
+ 0.0962,
+ 0.19795,
+ 0.3996,
+ 0.19795,
+ 0.2886,
+ 0.2368,
+ 0.66785,
+ 0.07585,
+ 0.0962,
+ 0.15725,
+ 0.0999,
+ 0.1554,
+ 0.12395,
+ 0.09435,
+ 0.09805,
+ 0.07585,
+ 0.0703,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.08695,
+ 0.09805,
+ 0.21275,
+ 0.22755,
+ 0.08695,
+ 0.3441,
+ 0.12395,
+ 0.1406,
+ 0.17205,
+ 0.2146,
+ 0.2627,
+ 0.1628,
+ 0.1628,
+ 0.1406,
+ 0.11285,
+ 0.09065,
+ 0.08325,
+ 0.07215,
+ 0.06105,
+ 0.05735,
+ 0.0666,
+ 0.0518,
+ 0.0629,
+ 0.06105,
+ 0.0777,
+ 0.1073,
+ 0.1332,
+ 0.1665,
+ 0.12765,
+ 0.29415,
+ 0.34965,
+ 0.24235,
+ 0.18315,
+ 0.23495,
+ 0.1295,
+ 0.14615,
+ 0.13875,
+ 0.1332,
+ 0.16835,
+ 0.0851,
+ 0.074,
+ 0.0629,
+ 0.0666,
+ 0.0629,
+ 0.06845,
+ 0.06475,
+ 0.06845,
+ 0.074,
+ 0.09805,
+ 0.1443,
+ 0.11655,
+ 0.11285,
+ 0.1295,
+ 0.46805,
+ 0.8399,
+ 0.07955,
+ 0.1628,
+ 0.1517,
+ 0.17205,
+ 0.2442,
+ 0.19055,
+ 0.23495,
+ 0.17575,
+ 0.09435,
+ 0.1221,
+ 0.0777,
+ 0.0814,
+ 0.07215,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.1258,
+ 0.12765,
+ 0.09435,
+ 0.1295,
+ 0.0999,
+ 0.18315,
+ 0.2368,
+ 0.1221,
+ 0.1184,
+ 0.10175,
+ 0.0888,
+ 0.0814,
+ 0.1776,
+ 0.1702,
+ 0.1073,
+ 0.08325,
+ 0.0666,
+ 0.0592,
+ 0.06105,
+ 0.05735,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0296,
+ 0.05735,
+ 0.06845,
+ 0.1147,
+ 0.0666,
+ 0.074,
+ 0.10545,
+ 0.1073,
+ 0.10915,
+ 0.1258,
+ 0.09805,
+ 0.08695,
+ 0.06845,
+ 0.074,
+ 0.07955,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.04255,
+ 0.03145,
+ 0.04625,
+ 0.0518,
+ 0.06105,
+ 0.0777,
+ 0.1702,
+ 0.17945,
+ 0.111,
+ 0.19425,
+ 0.13135,
+ 0.09435,
+ 0.09435,
+ 0.0888,
+ 0.0888,
+ 0.0888,
+ 0.0851,
+ 0.07215,
+ 0.05735,
+ 0.00185,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.06105,
+ 0.06845,
+ 0.074,
+ 0.07215,
+ 0.0777,
+ 0.07955,
+ 0.074,
+ 0.0814,
+ 0.08695,
+ 0.0888,
+ 0.1073,
+ 0.09065,
+ 0.09065,
+ 0.09435,
+ 0.09065,
+ 0.09065,
+ 0.06475,
+ 0.0592,
+ 0.0518,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.04625,
+ 0.0518,
+ 0.06105,
+ 0.07215,
+ 0.0888,
+ 0.10915,
+ 0.10545,
+ 0.1295,
+ 0.10915,
+ 0.14985,
+ 0.16095,
+ 0.0999,
+ 0.0777,
+ 0.07585,
+ 0.07215,
+ 0.06105,
+ 0.0555,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.0259,
+ 0.02775,
+ 0.0481,
+ 0.05365,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0629,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0111,
+ 0.00185,
+ 0.02035,
+ 0.0333,
+ 0.04255,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.0703,
+ 0.074,
+ 0.07215,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.05365,
+ 0.0481,
+ 0.0444,
+ 0.04255,
+ 0.00185,
+ 0.00185,
+ 0.04255,
+ 0.0481,
+ 0.0444,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.06475,
+ 0.0555,
+ 0.05365,
+ 0.06475,
+ 0.05365,
+ 0.06475,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.05365,
+ 0.04625,
+ 0.02775,
+ 0.0518,
+ 0.0333,
+ 0.03515,
+ 0.0407,
+ 0.03885,
+ 0.03145,
+ 0.0407,
+ 0.04625,
+ 0.0518,
+ 0.0555,
+ 0.0407,
+ 0.03515,
+ 0.0296,
+ 0.01665,
+ 0.0037,
+ 0.0222,
+ 0.0185,
+ 0.04255,
+ 0.04255,
+ 0.0481,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.02775,
+ 0.037,
+ 0.03515,
+ 0.03515,
+ 0.00185,
+ 0.01295,
+ 0.03145,
+ 0.0111,
+ 0.03145,
+ 0.0407,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0407,
+ 0.0481,
+ 0.0444,
+ 0.0407,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.04255,
+ 0.02775,
+ 0.0407,
+ 0.037,
+ 0.0296,
+ 0.0037,
+ 0.0185,
+ 0.037,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.0555,
+ 0.0629,
+ 0.0666,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0518,
+ 0.0518,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0629,
+ 0.0629,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0518,
+ 0.04995,
+ 0.04625,
+ 0.0407,
+ 0.0407,
+ 0.03885,
+ 0.04255,
+ 0.04255,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0407,
+ 0.037,
+ 0.00925,
+ 0.0037,
+ 0.03145,
+ 0.0444,
+ 0.04255,
+ 0.0518,
+ 0.06105,
+ 0.06845,
+ 0.0629,
+ 0.0629,
+ 0.07585,
+ 0.10175,
+ 0.0703,
+ 0.074,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.04255,
+ 0.03885,
+ 0.03885,
+ 0.04255,
+ 0.03515,
+ 0.0333,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0444,
+ 0.04995,
+ 0.04625,
+ 0.0407,
+ 0.0333,
+ 0.00185,
+ 0.0037,
+ 0.02035,
+ 0.00185,
+ 0.0259,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.04255,
+ 0.0481,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.04255,
+ 0.0407,
+ 0.04255,
+ 0.03885,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.06845,
+ 0.0629,
+ 0.0666,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.05735,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.03515,
+ 0.0407,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.07215,
+ 0.06845,
+ 0.06845,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.07215,
+ 0.07215,
+ 0.0703,
+ 0.0666,
+ 0.06475,
+ 0.0629,
+ 0.05365,
+ 0.04625,
+ 0.03515,
+ 0.03885,
+ 0.0333,
+ 0.00555,
+ 0.0407,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.05365,
+ 0.0555,
+ 0.0703,
+ 0.074,
+ 0.074,
+ 0.0777,
+ 0.07955,
+ 0.0814,
+ 0.07955,
+ 0.09805,
+ 0.0851,
+ 0.07585,
+ 0.0777,
+ 0.0666,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.00185,
+ 0.0259,
+ 0.0444,
+ 0.05365,
+ 0.05735,
+ 0.08325,
+ 0.0962,
+ 0.09065,
+ 0.1073,
+ 0.08325,
+ 0.1258,
+ 0.08325,
+ 0.0962,
+ 0.148,
+ 0.09435,
+ 0.0925,
+ 0.074,
+ 0.08325,
+ 0.10175,
+ 0.0592,
+ 0.06105,
+ 0.037,
+ 0.01665,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.01665,
+ 0.08325,
+ 0.08695,
+ 0.0814,
+ 0.07585,
+ 0.0925,
+ 0.12025,
+ 0.0703,
+ 0.0851,
+ 0.13505,
+ 0.1073,
+ 0.074,
+ 0.074,
+ 0.08695,
+ 0.09805,
+ 0.06105,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0555,
+ 0.06845,
+ 0.0851,
+ 0.074,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.06475,
+ 0.06845,
+ 0.07585,
+ 0.0629,
+ 0.0592,
+ 0.06845,
+ 0.05735,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.01295,
+ 0.0259,
+ 0.0518,
+ 0.0444,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.05365,
+ 0.0777,
+ 0.07215,
+ 0.07955,
+ 0.0555,
+ 0.074,
+ 0.0703,
+ 0.06845,
+ 0.0518,
+ 0.05735,
+ 0.04995,
+ 0.0481,
+ 0.00185,
+ 0.00555,
+ 0.00185,
+ 0.00185,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.0814,
+ 0.10545,
+ 0.0777,
+ 0.1073,
+ 0.07585,
+ 0.0888,
+ 0.13135,
+ 0.10545,
+ 0.0888,
+ 0.07955,
+ 0.0851,
+ 0.0962,
+ 0.07585,
+ 0.05735,
+ 0.0555,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.00185,
+ 0.00185,
+ 0.02405,
+ 0.0518,
+ 0.0259,
+ 0.0592,
+ 0.06475,
+ 0.0592,
+ 0.06845,
+ 0.05365,
+ 0.08695,
+ 0.07955,
+ 0.06845,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.05365,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0407,
+ 0.037,
+ 0.03885,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0518,
+ 0.05735,
+ 0.05365,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.037,
+ 0.00185,
+ 0.00185,
+ 0.02035,
+ 0.00185,
+ 0.02035,
+ 0.0407,
+ 0.0481,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.04625,
+ 0.0407,
+ 0.037,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.0407,
+ 0.04995,
+ 0.0629,
+ 0.0592,
+ 0.06105,
+ 0.0666,
+ 0.07585,
+ 0.0666,
+ 0.0666,
+ 0.0703,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.037,
+ 0.037,
+ 0.02775,
+ 0.03145,
+ 0.04255,
+ 0.04255,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.0629,
+ 0.0666,
+ 0.06845,
+ 0.06845,
+ 0.0629,
+ 0.0666,
+ 0.0592,
+ 0.0518,
+ 0.0481,
+ 0.03885,
+ 0.0407,
+ 0.03885,
+ 0.02035,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.0444,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.06845,
+ 0.06105,
+ 0.05735,
+ 0.0518,
+ 0.0444,
+ 0.04255,
+ 0.03885,
+ 0.03145,
+ 0.00185,
+ 0.03515,
+ 0.0592,
+ 0.05365,
+ 0.0629,
+ 0.0592,
+ 0.0666,
+ 0.08325,
+ 0.0814,
+ 0.0925,
+ 0.0851,
+ 0.1073,
+ 0.0851,
+ 0.09065,
+ 0.08695,
+ 0.0888,
+ 0.10175,
+ 0.07955,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.0407,
+ 0.0222,
+ 0.00185,
+ 0.0296,
+ 0.00925,
+ 0.0444,
+ 0.0444,
+ 0.05365,
+ 0.0592,
+ 0.08325,
+ 0.1036,
+ 0.07585,
+ 0.1036,
+ 0.074,
+ 0.09435,
+ 0.1924,
+ 0.09435,
+ 0.07585,
+ 0.0777,
+ 0.1147,
+ 0.0851,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.0481,
+ 0.05365,
+ 0.0481,
+ 0.05735,
+ 0.06845,
+ 0.09065,
+ 0.0592,
+ 0.1036,
+ 0.0999,
+ 0.1443,
+ 0.09435,
+ 0.13135,
+ 0.07585,
+ 0.074,
+ 0.08325,
+ 0.0851,
+ 0.0814,
+ 0.0481,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.0407,
+ 0.03515,
+ 0.00185,
+ 0.00185,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.06105,
+ 0.074,
+ 0.0777,
+ 0.0629,
+ 0.0629,
+ 0.06845,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.06475,
+ 0.0555,
+ 0.0407,
+ 0.0407,
+ 0.03885,
+ 0.0407,
+ 0.04255,
+ 0.00185,
+ 0.02035,
+ 0.00185,
+ 0.04995,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.06475,
+ 0.06475,
+ 0.06845,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.037,
+ 0.0111,
+ 0.03885,
+ 0.04255,
+ 0.04255,
+ 0.03515,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.06105,
+ 0.0629,
+ 0.0666,
+ 0.06845,
+ 0.08695,
+ 0.1258,
+ 0.074,
+ 0.06475,
+ 0.0592,
+ 0.0592,
+ 0.05365,
+ 0.0444,
+ 0.04625,
+ 0.0444,
+ 0.0333,
+ 0.02035,
+ 0.0148,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.03885,
+ 0.04995,
+ 0.0518,
+ 0.05365,
+ 0.06105,
+ 0.06475,
+ 0.07215,
+ 0.07585,
+ 0.12025,
+ 0.13505,
+ 0.07215,
+ 0.0703,
+ 0.07215,
+ 0.06475,
+ 0.0518,
+ 0.04995,
+ 0.04625,
+ 0.0555,
+ 0.03145,
+ 0.00185,
+ 0.0185,
+ 0.04625,
+ 0.04995,
+ 0.04625,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.06105,
+ 0.0703,
+ 0.07585,
+ 0.12025,
+ 0.1036,
+ 0.10175,
+ 0.09065,
+ 0.0777,
+ 0.0925,
+ 0.0888,
+ 0.074,
+ 0.0592,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.0444,
+ 0.0555,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.06105,
+ 0.06475,
+ 0.06845,
+ 0.0703,
+ 0.074,
+ 0.0814,
+ 0.0962,
+ 0.0925,
+ 0.1036,
+ 0.09435,
+ 0.0888,
+ 0.08695,
+ 0.09435,
+ 0.0851,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.074,
+ 0.074,
+ 0.0703,
+ 0.07585,
+ 0.0962,
+ 0.0962,
+ 0.0962,
+ 0.12025,
+ 0.15355,
+ 0.0962,
+ 0.0925,
+ 0.08695,
+ 0.0703,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.04625,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.0777,
+ 0.08695,
+ 0.074,
+ 0.0999,
+ 0.0851,
+ 0.1221,
+ 0.1073,
+ 0.1443,
+ 0.0962,
+ 0.07585,
+ 0.0888,
+ 0.07215,
+ 0.0555,
+ 0.05365,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.04255,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.06105,
+ 0.07955,
+ 0.07955,
+ 0.1073,
+ 0.09065,
+ 0.15355,
+ 0.22015,
+ 0.1887,
+ 0.111,
+ 0.0814,
+ 0.0777,
+ 0.07215,
+ 0.0629,
+ 0.0555,
+ 0.04995,
+ 0.04255,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.01665,
+ 0.04255,
+ 0.03885,
+ 0.05365,
+ 0.05735,
+ 0.07585,
+ 0.074,
+ 0.08695,
+ 0.0703,
+ 0.09805,
+ 0.12025,
+ 0.0666,
+ 0.06105,
+ 0.0555,
+ 0.06475,
+ 0.0481,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.07585,
+ 0.0666,
+ 0.074,
+ 0.06475,
+ 0.07585,
+ 0.0814,
+ 0.0703,
+ 0.06475,
+ 0.05735,
+ 0.0666,
+ 0.05735,
+ 0.0629,
+ 0.0518,
+ 0.04625,
+ 0.04995,
+ 0.04255,
+ 0.03145,
+ 0.02035,
+ 0.0259,
+ 0.02775,
+ 0.0259,
+ 0.04625,
+ 0.0518,
+ 0.05365,
+ 0.05735,
+ 0.07215,
+ 0.0629,
+ 0.06105,
+ 0.0666,
+ 0.0703,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0518,
+ 0.04255,
+ 0.03885,
+ 0.037,
+ 0.037,
+ 0.037,
+ 0.037,
+ 0.03515,
+ 0.04255,
+ 0.0555,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.06105,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.05735,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.04255,
+ 0.04255,
+ 0.03885,
+ 0.0407,
+ 0.04625,
+ 0.0518,
+ 0.04995,
+ 0.037,
+ 0.0444,
+ 0.06105,
+ 0.0592,
+ 0.0666,
+ 0.08695,
+ 0.07215,
+ 0.09065,
+ 0.13135,
+ 0.09805,
+ 0.0666,
+ 0.06475,
+ 0.0666,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.0296,
+ 0.01295,
+ 0.0444,
+ 0.04625,
+ 0.0555,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.0629,
+ 0.06475,
+ 0.07585,
+ 0.074,
+ 0.10915,
+ 0.07585,
+ 0.074,
+ 0.0777,
+ 0.07215,
+ 0.0592,
+ 0.0666,
+ 0.05365,
+ 0.0444,
+ 0.0407,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.0407,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.07585,
+ 0.08695,
+ 0.1443,
+ 0.18685,
+ 0.13135,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.0481,
+ 0.04625,
+ 0.04255,
+ 0.04255,
+ 0.04625,
+ 0.037,
+ 0.02775,
+ 0.04995,
+ 0.05365,
+ 0.0555,
+ 0.06105,
+ 0.06105,
+ 0.06845,
+ 0.15725,
+ 0.12395,
+ 0.20905,
+ 0.1332,
+ 0.06845,
+ 0.0666,
+ 0.07215,
+ 0.06475,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.04255,
+ 0.0444,
+ 0.03885,
+ 0.04255,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.06845,
+ 0.10915,
+ 0.0592,
+ 0.0888,
+ 0.09805,
+ 0.15355,
+ 0.1073,
+ 0.06105,
+ 0.09065,
+ 0.0962,
+ 0.0592,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.074,
+ 0.10175,
+ 0.1517,
+ 0.1258,
+ 0.1739,
+ 0.33485,
+ 0.14245,
+ 0.0888,
+ 0.0925,
+ 0.0925,
+ 0.07585,
+ 0.05735,
+ 0.0592,
+ 0.05365,
+ 0.0629,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.074,
+ 0.074,
+ 0.0629,
+ 0.0925,
+ 0.1073,
+ 0.111,
+ 0.10175,
+ 0.1369,
+ 0.2849,
+ 0.185,
+ 0.2035,
+ 0.33485,
+ 0.1406,
+ 0.09065,
+ 0.0925,
+ 0.09805,
+ 0.0925,
+ 0.0666,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.05735,
+ 0.07215,
+ 0.0666,
+ 0.07955,
+ 0.07585,
+ 0.08695,
+ 0.11285,
+ 0.074,
+ 0.05735,
+ 0.13875,
+ 0.0851,
+ 0.39035,
+ 0.0814,
+ 0.0518,
+ 0.0666,
+ 0.06105,
+ 0.0814,
+ 0.0592,
+ 0.0629,
+ 0.05735,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0777,
+ 0.05365,
+ 0.04625,
+ 0.05735,
+ 0.06475,
+ 0.06105,
+ 0.06105,
+ 0.0481,
+ 0.06845,
+ 0.06105,
+ 0.0592,
+ 0.04625,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0407,
+ 0.04255,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.04255,
+ 0.0407,
+ 0.0444,
+ 0.0481,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.0703,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0481,
+ 0.04255,
+ 0.0407,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.05365,
+ 0.0481,
+ 0.0444,
+ 0.03885,
+ 0.037,
+ 0.02035,
+ 0.0259,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.0148,
+ 0.00185,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.0481,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.04995,
+ 0.06475,
+ 0.05735,
+ 0.0481,
+ 0.04255,
+ 0.04255,
+ 0.0407,
+ 0.0333,
+ 0.03145,
+ 0.037,
+ 0.0407,
+ 0.04625,
+ 0.04995,
+ 0.0555,
+ 0.0518,
+ 0.05365,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0666,
+ 0.0666,
+ 0.0592,
+ 0.0481,
+ 0.04995,
+ 0.02775,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.06845,
+ 0.0777,
+ 0.0703,
+ 0.0703,
+ 0.0814,
+ 0.1147,
+ 0.1258,
+ 0.1517,
+ 0.0888,
+ 0.08325,
+ 0.1258,
+ 0.0888,
+ 0.0851,
+ 0.11285,
+ 0.1184,
+ 0.0925,
+ 0.07215,
+ 0.0962,
+ 0.07955,
+ 0.0666,
+ 0.05735,
+ 0.0592,
+ 0.0814,
+ 0.0888,
+ 0.10545,
+ 0.05735,
+ 0.08695,
+ 0.0962,
+ 0.0666,
+ 0.08695,
+ 0.08695,
+ 0.07215,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.07215,
+ 0.0666,
+ 0.0629,
+ 0.0703,
+ 0.06475,
+ 0.05735,
+ 0.0703,
+ 0.0666,
+ 0.0592,
+ 0.07215,
+ 0.0703,
+ 0.0777,
+ 0.0592,
+ 0.111,
+ 0.06475,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.06105,
+ 0.06475,
+ 0.0666,
+ 0.0666,
+ 0.06845,
+ 0.06475,
+ 0.0777,
+ 0.0851,
+ 0.074,
+ 0.0592,
+ 0.0592,
+ 0.07955,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.074,
+ 0.0555,
+ 0.05735,
+ 0.06475,
+ 0.0703,
+ 0.09065,
+ 0.09065,
+ 0.1221,
+ 0.0962,
+ 0.07955,
+ 0.07955,
+ 0.06845,
+ 0.06105,
+ 0.07215,
+ 0.0444,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.03885,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.0407,
+ 0.04625,
+ 0.0444,
+ 0.0185,
+ 0.0333,
+ 0.0407,
+ 0.03885,
+ 0.04625,
+ 0.04255,
+ 0.0444,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.03515,
+ 0.037,
+ 0.01665,
+ 0.00555,
+ 0.01665,
+ 0.0148,
+ 0.04255,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.06105,
+ 0.05735,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.0518,
+ 0.04255,
+ 0.0444,
+ 0.03145,
+ 0.0333,
+ 0.03145,
+ 0.03885,
+ 0.04255,
+ 0.04255,
+ 0.06845,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.0703,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.07215,
+ 0.06105,
+ 0.0555,
+ 0.0444,
+ 0.0444,
+ 0.037,
+ 0.0444,
+ 0.04255,
+ 0.04255,
+ 0.0444,
+ 0.04995,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05735,
+ 0.06105,
+ 0.074,
+ 0.06105,
+ 0.07215,
+ 0.06105,
+ 0.0666,
+ 0.0888,
+ 0.06105,
+ 0.0592,
+ 0.0703,
+ 0.0629,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.0407,
+ 0.037,
+ 0.03885,
+ 0.03885,
+ 0.04255,
+ 0.0407,
+ 0.05735,
+ 0.06475,
+ 0.0555,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.074,
+ 0.0777,
+ 0.0888,
+ 0.074,
+ 0.07215,
+ 0.06845,
+ 0.06475,
+ 0.0851,
+ 0.07955,
+ 0.06105,
+ 0.0518,
+ 0.04995,
+ 0.0444,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.0481,
+ 0.04995,
+ 0.05365,
+ 0.06105,
+ 0.0555,
+ 0.0592,
+ 0.0666,
+ 0.06475,
+ 0.0703,
+ 0.0703,
+ 0.06845,
+ 0.1184,
+ 0.08695,
+ 0.0703,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0333,
+ 0.0481,
+ 0.03885,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0777,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.05365,
+ 0.05365,
+ 0.04625,
+ 0.04625,
+ 0.04255,
+ 0.02035,
+ 0.02775,
+ 0.0074,
+ 0.0296,
+ 0.0407,
+ 0.04255,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.06845,
+ 0.05735,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.06475,
+ 0.10175,
+ 0.09435,
+ 0.06105,
+ 0.09065,
+ 0.07955,
+ 0.0703,
+ 0.1073,
+ 0.07585,
+ 0.06845,
+ 0.0666,
+ 0.07215,
+ 0.06845,
+ 0.074,
+ 0.10915,
+ 0.074,
+ 0.0555,
+ 0.04625,
+ 0.0518,
+ 0.037,
+ 0.0407,
+ 0.037,
+ 0.04255,
+ 0.04255,
+ 0.04625,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.05735,
+ 0.06105,
+ 0.06845,
+ 0.06845,
+ 0.07585,
+ 0.0777,
+ 0.06105,
+ 0.0851,
+ 0.07215,
+ 0.0703,
+ 0.0962,
+ 0.074,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.01295,
+ 0.037,
+ 0.04255,
+ 0.0444,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0629,
+ 0.07215,
+ 0.0703,
+ 0.07955,
+ 0.08695,
+ 0.0666,
+ 0.0777,
+ 0.0666,
+ 0.074,
+ 0.05735,
+ 0.10175,
+ 0.0666,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.037,
+ 0.03885,
+ 0.0407,
+ 0.04995,
+ 0.05365,
+ 0.06845,
+ 0.0592,
+ 0.0666,
+ 0.074,
+ 0.074,
+ 0.0999,
+ 0.111,
+ 0.0851,
+ 0.08325,
+ 0.1147,
+ 0.0814,
+ 0.07215,
+ 0.1073,
+ 0.0925,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.02775,
+ 0.0444,
+ 0.02405,
+ 0.0444,
+ 0.0407,
+ 0.08325,
+ 0.06105,
+ 0.05365,
+ 0.0777,
+ 0.09065,
+ 0.09435,
+ 0.1036,
+ 0.11285,
+ 0.07585,
+ 0.1036,
+ 0.1036,
+ 0.08325,
+ 0.07585,
+ 0.0888,
+ 0.0703,
+ 0.06105,
+ 0.05735,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0333,
+ 0.0481,
+ 0.04995,
+ 0.04625,
+ 0.0518,
+ 0.0666,
+ 0.0703,
+ 0.10915,
+ 0.07955,
+ 0.05735,
+ 0.0629,
+ 0.08695,
+ 0.07585,
+ 0.0666,
+ 0.0777,
+ 0.10175,
+ 0.07215,
+ 0.0777,
+ 0.06475,
+ 0.06105,
+ 0.0444,
+ 0.04995,
+ 0.0481,
+ 0.0407,
+ 0.04255,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.06475,
+ 0.10545,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.037,
+ 0.0333,
+ 0.04995,
+ 0.0518,
+ 0.0925,
+ 0.0666,
+ 0.0703,
+ 0.0925,
+ 0.07585,
+ 0.06845,
+ 0.07585,
+ 0.06845,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.0703,
+ 0.0703,
+ 0.0666,
+ 0.0555,
+ 0.0444,
+ 0.0444,
+ 0.01665,
+ 0.00185,
+ 0.00925,
+ 0.0074,
+ 0.0259,
+ 0.03515,
+ 0.0518,
+ 0.0703,
+ 0.05735,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.0592,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.07215,
+ 0.0592,
+ 0.04995,
+ 0.0444,
+ 0.037,
+ 0.03145,
+ 0.03145,
+ 0.0333,
+ 0.0222,
+ 0.03145,
+ 0.03885,
+ 0.04255,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.06475,
+ 0.0555,
+ 0.0444,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.03885,
+ 0.0444,
+ 0.03885,
+ 0.05365,
+ 0.0925,
+ 0.06105,
+ 0.0666,
+ 0.0666,
+ 0.07215,
+ 0.07215,
+ 0.07585,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.0666,
+ 0.06475,
+ 0.0925,
+ 0.0703,
+ 0.05365,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.01665,
+ 0.0111,
+ 0.01665,
+ 0.04625,
+ 0.0518,
+ 0.0555,
+ 0.05735,
+ 0.06475,
+ 0.0666,
+ 0.07215,
+ 0.0925,
+ 0.0777,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.06475,
+ 0.0703,
+ 0.0555,
+ 0.0518,
+ 0.04625,
+ 0.04995,
+ 0.0481,
+ 0.02775,
+ 0.04255,
+ 0.0296,
+ 0.0444,
+ 0.0333,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0703,
+ 0.0777,
+ 0.0629,
+ 0.0518,
+ 0.0518,
+ 0.0444,
+ 0.0444,
+ 0.0407,
+ 0.01295,
+ 0.0333,
+ 0.037,
+ 0.04255,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.06475,
+ 0.0666,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.0444,
+ 0.03885,
+ 0.0296,
+ 0.04255,
+ 0.0407,
+ 0.04625,
+ 0.05365,
+ 0.06475,
+ 0.0555,
+ 0.06105,
+ 0.0777,
+ 0.0592,
+ 0.0592,
+ 0.06845,
+ 0.06475,
+ 0.05735,
+ 0.0888,
+ 0.0629,
+ 0.0777,
+ 0.10545,
+ 0.0629,
+ 0.0555,
+ 0.04995,
+ 0.0333,
+ 0.0111,
+ 0.04255,
+ 0.02775,
+ 0.02775,
+ 0.03885,
+ 0.03885,
+ 0.05735,
+ 0.10175,
+ 0.0629,
+ 0.06475,
+ 0.09805,
+ 0.0592,
+ 0.0629,
+ 0.07215,
+ 0.04995,
+ 0.05735,
+ 0.06475,
+ 0.06475,
+ 0.06105,
+ 0.0888,
+ 0.0629,
+ 0.06105,
+ 0.04995,
+ 0.04995,
+ 0.0444,
+ 0.0481,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.06105,
+ 0.07585,
+ 0.0777,
+ 0.07955,
+ 0.07585,
+ 0.0666,
+ 0.06475,
+ 0.0703,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0629,
+ 0.07585,
+ 0.1073,
+ 0.07215,
+ 0.0703,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0629,
+ 0.0925,
+ 0.0851,
+ 0.07955,
+ 0.0777,
+ 0.07215,
+ 0.09435,
+ 0.06475,
+ 0.06475,
+ 0.0629,
+ 0.0925,
+ 0.06475,
+ 0.07215,
+ 0.09805,
+ 0.07215,
+ 0.0703,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.02405,
+ 0.02405,
+ 0.03515,
+ 0.0148,
+ 0.0185,
+ 0.05365,
+ 0.0666,
+ 0.06105,
+ 0.06475,
+ 0.0777,
+ 0.0703,
+ 0.07585,
+ 0.0666,
+ 0.06105,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.0481,
+ 0.04625,
+ 0.0518,
+ 0.05365,
+ 0.0555,
+ 0.08695,
+ 0.08695,
+ 0.0629,
+ 0.0592,
+ 0.04995,
+ 0.0407,
+ 0.037,
+ 0.0444,
+ 0.0481,
+ 0.07955,
+ 0.06845,
+ 0.07215,
+ 0.05735,
+ 0.0592,
+ 0.04995,
+ 0.0518,
+ 0.037,
+ 0.04995,
+ 0.02035,
+ 0.0148,
+ 0.0296,
+ 0.0518,
+ 0.06475,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04625,
+ 0.0444,
+ 0.04255,
+ 0.074,
+ 0.07955,
+ 0.0666,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0333,
+ 0.04625,
+ 0.0407,
+ 0.00555,
+ 0.0518,
+ 0.06105,
+ 0.06845,
+ 0.07215,
+ 0.0666,
+ 0.07585,
+ 0.06845,
+ 0.0666,
+ 0.0666,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0481,
+ 0.08325,
+ 0.09435,
+ 0.0814,
+ 0.0666,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.08325,
+ 0.09805,
+ 0.07585,
+ 0.0814,
+ 0.0481,
+ 0.0999,
+ 0.0703,
+ 0.07215,
+ 0.06475,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.09435,
+ 0.08695,
+ 0.06845,
+ 0.06845,
+ 0.0629,
+ 0.05735,
+ 0.04995,
+ 0.04255,
+ 0.0407,
+ 0.0407,
+ 0.02775,
+ 0.04255,
+ 0.04995,
+ 0.06845,
+ 0.0703,
+ 0.0703,
+ 0.08695,
+ 0.074,
+ 0.06845,
+ 0.06845,
+ 0.06475,
+ 0.0629,
+ 0.06475,
+ 0.0629,
+ 0.09065,
+ 0.1406,
+ 0.0925,
+ 0.06845,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0444,
+ 0.0518,
+ 0.0481,
+ 0.0407,
+ 0.05735,
+ 0.07215,
+ 0.0925,
+ 0.07585,
+ 0.0703,
+ 0.0703,
+ 0.074,
+ 0.07955,
+ 0.06475,
+ 0.06475,
+ 0.06475,
+ 0.0666,
+ 0.09065,
+ 0.074,
+ 0.0814,
+ 0.09065,
+ 0.06845,
+ 0.0629,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04625,
+ 0.04255,
+ 0.0444,
+ 0.0592,
+ 0.0814,
+ 0.0777,
+ 0.0925,
+ 0.0851,
+ 0.06845,
+ 0.06475,
+ 0.06475,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0666,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.05735,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.06475,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.05365,
+ 0.0703,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.04995,
+ 0.04625,
+ 0.0481,
+ 0.0444,
+ 0.0481,
+ 0.0703,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.04255,
+ 0.0481,
+ 0.03145,
+ 0.03145,
+ 0.00185,
+ 0.0074,
+ 0.0111,
+ 0.04995,
+ 0.2294,
+ 0.1332,
+ 0.0888,
+ 0.0814,
+ 0.06105,
+ 0.07215,
+ 0.0999,
+ 0.06845,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.05735,
+ 0.08325,
+ 0.1184,
+ 0.0629,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04625,
+ 0.0222,
+ 0.03145,
+ 0.03145,
+ 0.04995,
+ 0.0592,
+ 0.0629,
+ 0.06475,
+ 0.0629,
+ 0.07215,
+ 0.06475,
+ 0.06845,
+ 0.0703,
+ 0.0629,
+ 0.0592,
+ 0.0629,
+ 0.0666,
+ 0.0999,
+ 0.09065,
+ 0.0703,
+ 0.06845,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0481,
+ 0.04995,
+ 0.0703,
+ 0.0703,
+ 0.0777,
+ 0.1036,
+ 0.09435,
+ 0.0666,
+ 0.07585,
+ 0.074,
+ 0.06475,
+ 0.06845,
+ 0.074,
+ 0.0703,
+ 0.08325,
+ 0.0629,
+ 0.06475,
+ 0.06105,
+ 0.04995,
+ 0.04625,
+ 0.0407,
+ 0.0444,
+ 0.03885,
+ 0.0148,
+ 0.0333,
+ 0.03885,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.04995,
+ 0.0407,
+ 0.03515,
+ 0.0407,
+ 0.03885,
+ 0.02405,
+ 0.02035,
+ 0.03515,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.06845,
+ 0.05365,
+ 0.0629,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.0333,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.04995,
+ 0.0555,
+ 0.0592,
+ 0.0703,
+ 0.06475,
+ 0.0592,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.0888,
+ 0.06105,
+ 0.0629,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0629,
+ 0.0666,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.0333,
+ 0.0296,
+ 0.04995,
+ 0.0481,
+ 0.0148,
+ 0.02035,
+ 0.00185,
+ 0.03515,
+ 0.08695,
+ 0.13875,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.06475,
+ 0.05735,
+ 0.0592,
+ 0.0555,
+ 0.0592,
+ 0.0629,
+ 0.12765,
+ 0.1443,
+ 0.10545,
+ 0.0814,
+ 0.05735,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0777,
+ 0.0629,
+ 0.0555,
+ 0.06475,
+ 0.0703,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0629,
+ 0.08695,
+ 0.10175,
+ 0.0592,
+ 0.0592,
+ 0.0518,
+ 0.04625,
+ 0.0333,
+ 0.04625,
+ 0.0333,
+ 0.02035,
+ 0.02405,
+ 0.03515,
+ 0.04255,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05365,
+ 0.05735,
+ 0.0999,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0444,
+ 0.04255,
+ 0.04255,
+ 0.0407,
+ 0.0481,
+ 0.04995,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.08325,
+ 0.0925,
+ 0.06475,
+ 0.06845,
+ 0.06105,
+ 0.0518,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.06105,
+ 0.06845,
+ 0.0629,
+ 0.06105,
+ 0.0703,
+ 0.074,
+ 0.07215,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.09435,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.00925,
+ 0.0666,
+ 0.02405,
+ 0.03885,
+ 0.0222,
+ 0.04625,
+ 0.0296,
+ 0.0481,
+ 0.0481,
+ 0.0666,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.03515,
+ 0.0481,
+ 0.0555,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.0481,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.0185,
+ 0.0407,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.0444,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0629,
+ 0.05365,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0407,
+ 0.0333,
+ 0.01295,
+ 0.0333,
+ 0.0111,
+ 0.0481,
+ 0.0444,
+ 0.05365,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.0703,
+ 0.0629,
+ 0.06105,
+ 0.0629,
+ 0.0555,
+ 0.0518,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.06845,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.0629,
+ 0.111,
+ 0.1036,
+ 0.13135,
+ 0.10175,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.03145,
+ 0.0296,
+ 0.0296,
+ 0.0111,
+ 0.03885,
+ 0.0703,
+ 0.074,
+ 0.0555,
+ 0.04995,
+ 0.03885,
+ 0.03145,
+ 0.03515,
+ 0.0296,
+ 0.0259,
+ 0.0222,
+ 0.03145,
+ 0.0777,
+ 0.05735,
+ 0.04255,
+ 0.0444,
+ 0.05365,
+ 0.03515,
+ 0.0037,
+ 0.02405,
+ 0.00185,
+ 0.02775,
+ 0.00185,
+ 0.00185,
+ 0.00185,
+ 0.1036,
+ 0.09435,
+ 0.0592,
+ 0.0555,
+ 0.05735,
+ 0.0481,
+ 0.0444,
+ 0.0481,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.09805,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0481,
+ 0.04625,
+ 0.037,
+ 0.0296,
+ 0.00185,
+ 0.00925,
+ 0.0444,
+ 0.05735,
+ 0.0629,
+ 0.08695,
+ 0.0703,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.06105,
+ 0.06845,
+ 0.05365,
+ 0.0555,
+ 0.04995,
+ 0.03885,
+ 0.0481,
+ 0.03515,
+ 0.037,
+ 0.037,
+ 0.0333,
+ 0.0333,
+ 0.0333,
+ 0.03885,
+ 0.037,
+ 0.04255,
+ 0.0407,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.0444,
+ 0.0444,
+ 0.04995,
+ 0.06845,
+ 0.0555,
+ 0.04995,
+ 0.04995,
+ 0.0444,
+ 0.0407,
+ 0.0185,
+ 0.037,
+ 0.03885,
+ 0.02035,
+ 0.00185,
+ 0.03515,
+ 0.037,
+ 0.0444,
+ 0.04255,
+ 0.0444,
+ 0.04625,
+ 0.04625,
+ 0.0333,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.05735,
+ 0.0851,
+ 0.05735,
+ 0.0592,
+ 0.05365,
+ 0.04255,
+ 0.03515,
+ 0.03515,
+ 0.0407,
+ 0.03885,
+ 0.0111,
+ 0.01665,
+ 0.03885,
+ 0.04625,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0666,
+ 0.0629,
+ 0.06105,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.07215,
+ 0.0888,
+ 0.08325,
+ 0.06845,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.04625,
+ 0.04625,
+ 0.0444,
+ 0.04995,
+ 0.04995,
+ 0.0814,
+ 0.06475,
+ 0.074,
+ 0.0666,
+ 0.06475,
+ 0.07585,
+ 0.0666,
+ 0.06475,
+ 0.0703,
+ 0.0629,
+ 0.0851,
+ 0.1258,
+ 0.1147,
+ 0.10175,
+ 0.1036,
+ 0.0777,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0259,
+ 0.0925,
+ 0.06475,
+ 0.074,
+ 0.0777,
+ 0.0629,
+ 0.0518,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0481,
+ 0.07215,
+ 0.0777,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.037,
+ 0.0444,
+ 0.05365,
+ 0.07215,
+ 0.0777,
+ 0.05365,
+ 0.074,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.07215,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.05365,
+ 0.0518,
+ 0.0444,
+ 0.04995,
+ 0.04625,
+ 0.02405,
+ 0.0296,
+ 0.03145,
+ 0.0333,
+ 0.0481,
+ 0.0666,
+ 0.07955,
+ 0.06845,
+ 0.07215,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.06475,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.04995,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0703,
+ 0.0629,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.0481,
+ 0.0666,
+ 0.0666,
+ 0.05735,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.06105,
+ 0.06475,
+ 0.07585,
+ 0.07215,
+ 0.06845,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05365,
+ 0.05365,
+ 0.0481,
+ 0.04995,
+ 0.0629,
+ 0.09805,
+ 0.08325,
+ 0.07585,
+ 0.0666,
+ 0.0888,
+ 0.0629,
+ 0.06475,
+ 0.0592,
+ 0.06475,
+ 0.07215,
+ 0.07215,
+ 0.08325,
+ 0.07955,
+ 0.0666,
+ 0.06105,
+ 0.06105,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0444,
+ 0.0518,
+ 0.05735,
+ 0.0629,
+ 0.0629,
+ 0.0555,
+ 0.07215,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.0629,
+ 0.06475,
+ 0.06475,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.0296,
+ 0.06845,
+ 0.074,
+ 0.0851,
+ 0.1073,
+ 0.0888,
+ 0.0925,
+ 0.07215,
+ 0.06845,
+ 0.10915,
+ 0.14615,
+ 0.08695,
+ 0.0888,
+ 0.10915,
+ 0.06845,
+ 0.0629,
+ 0.0629,
+ 0.06845,
+ 0.0629,
+ 0.06845,
+ 0.06845,
+ 0.0666,
+ 0.0592,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.06105,
+ 0.1073,
+ 0.0851,
+ 0.0666,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0666,
+ 0.06845,
+ 0.0629,
+ 0.0555,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.05365,
+ 0.07955,
+ 0.0703,
+ 0.0666,
+ 0.0666,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.03885,
+ 0.04995,
+ 0.0407,
+ 0.04625,
+ 0.0481,
+ 0.0518,
+ 0.0629,
+ 0.05365,
+ 0.0592,
+ 0.0666,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.06105,
+ 0.0592,
+ 0.0666,
+ 0.06845,
+ 0.0592,
+ 0.0555,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0555,
+ 0.07215,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.0518,
+ 0.0444,
+ 0.0592,
+ 0.0592,
+ 0.06475,
+ 0.06845,
+ 0.0703,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.06475,
+ 0.07955,
+ 0.0592,
+ 0.06105,
+ 0.06845,
+ 0.0666,
+ 0.05735,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.04995,
+ 0.05365,
+ 0.0888,
+ 0.0851,
+ 0.07585,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0777,
+ 0.06845,
+ 0.08695,
+ 0.08325,
+ 0.0592,
+ 0.04255,
+ 0.04625,
+ 0.0518,
+ 0.0481,
+ 0.04255,
+ 0.0481,
+ 0.0481,
+ 0.0407,
+ 0.06105,
+ 0.0777,
+ 0.0851,
+ 0.074,
+ 0.06475,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.07585,
+ 0.0925,
+ 0.05735,
+ 0.06105,
+ 0.0555,
+ 0.0481,
+ 0.0259,
+ 0.02775,
+ 0.02775,
+ 0.0333,
+ 0.0222,
+ 0.03145,
+ 0.0333,
+ 0.04995,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.0592,
+ 0.06105,
+ 0.17945,
+ 0.17575,
+ 0.1628,
+ 0.11655,
+ 0.0777,
+ 0.0666,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0444,
+ 0.0481,
+ 0.0481,
+ 0.04995,
+ 0.0518,
+ 0.0592,
+ 0.074,
+ 0.07955,
+ 0.07955,
+ 0.0666,
+ 0.06105,
+ 0.0703,
+ 0.0851,
+ 0.06845,
+ 0.07215,
+ 0.0703,
+ 0.0703,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.06845,
+ 0.06845,
+ 0.0666,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.08325,
+ 0.14245,
+ 0.074,
+ 0.0777,
+ 0.07585,
+ 0.074,
+ 0.07215,
+ 0.06845,
+ 0.06475,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.06105,
+ 0.08325,
+ 0.07215,
+ 0.06845,
+ 0.06475,
+ 0.05735,
+ 0.0592,
+ 0.04995,
+ 0.0666,
+ 0.0925,
+ 0.10175,
+ 0.1184,
+ 0.12765,
+ 0.1221,
+ 0.0925,
+ 0.06475,
+ 0.0555,
+ 0.03145,
+ 0.04995,
+ 0.04625,
+ 0.0555,
+ 0.0407,
+ 0.0444,
+ 0.05365,
+ 0.06845,
+ 0.0592,
+ 0.0925,
+ 0.07955,
+ 0.0814,
+ 0.04995,
+ 0.0666,
+ 0.0629,
+ 0.06845,
+ 0.0814,
+ 0.19055,
+ 0.1036,
+ 0.09435,
+ 0.1295,
+ 0.09065,
+ 0.06845,
+ 0.0703,
+ 0.0444,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.0703,
+ 0.08695,
+ 0.0703,
+ 0.074,
+ 0.07955,
+ 0.06475,
+ 0.074,
+ 0.0518,
+ 0.0518,
+ 0.05735,
+ 0.05365,
+ 0.111,
+ 0.08695,
+ 0.1147,
+ 0.09435,
+ 0.11285,
+ 0.07215,
+ 0.074,
+ 0.0592,
+ 0.06475,
+ 0.06845,
+ 0.0555,
+ 0.06845,
+ 0.0592,
+ 0.0888,
+ 0.074,
+ 0.09805,
+ 0.08695,
+ 0.0814,
+ 0.06845,
+ 0.07215,
+ 0.05735,
+ 0.0592,
+ 0.0629,
+ 0.0555,
+ 0.08325,
+ 0.0888,
+ 0.09065,
+ 0.111,
+ 0.0962,
+ 0.06845,
+ 0.0666,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0629,
+ 0.0629,
+ 0.10915,
+ 0.11655,
+ 0.0888,
+ 0.1184,
+ 0.07215,
+ 0.0999,
+ 0.0777,
+ 0.06475,
+ 0.0555,
+ 0.06105,
+ 0.06475,
+ 0.0888,
+ 0.1221,
+ 0.0888,
+ 0.08695,
+ 0.111,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.0592,
+ 0.05735,
+ 0.07215,
+ 0.08695,
+ 0.0814,
+ 0.0666,
+ 0.06475,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0629,
+ 0.0666,
+ 0.06475,
+ 0.0629,
+ 0.07215,
+ 0.0666,
+ 0.05365,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.05735,
+ 0.06105,
+ 0.0666,
+ 0.07955,
+ 0.09065,
+ 0.0814,
+ 0.07215,
+ 0.0629,
+ 0.0629,
+ 0.06475,
+ 0.0666,
+ 0.11655,
+ 0.07215,
+ 0.07585,
+ 0.09435,
+ 0.06475,
+ 0.0629,
+ 0.05735,
+ 0.0518,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.0666,
+ 0.0666,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.07215,
+ 0.1147,
+ 0.10175,
+ 0.0888,
+ 0.0999,
+ 0.10545,
+ 0.074,
+ 0.0629,
+ 0.06105,
+ 0.0629,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.0629,
+ 0.07585,
+ 0.0851,
+ 0.0888,
+ 0.111,
+ 0.0851,
+ 0.074,
+ 0.0703,
+ 0.0703,
+ 0.0703,
+ 0.0703,
+ 0.0814,
+ 0.111,
+ 0.0888,
+ 0.08325,
+ 0.09435,
+ 0.0851,
+ 0.0666,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0592,
+ 0.09065,
+ 0.09805,
+ 0.07215,
+ 0.0703,
+ 0.06105,
+ 0.06475,
+ 0.04255,
+ 0.06105,
+ 0.05365,
+ 0.0518,
+ 0.06105,
+ 0.0888,
+ 0.074,
+ 0.06845,
+ 0.0629,
+ 0.07215,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.0555,
+ 0.0814,
+ 0.08695,
+ 0.0703,
+ 0.0629,
+ 0.0629,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.04995,
+ 0.05735,
+ 0.2368,
+ 0.08325,
+ 0.0925,
+ 0.0888,
+ 0.08695,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0555,
+ 0.06845,
+ 0.0888,
+ 0.06475,
+ 0.0629,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.0703,
+ 0.08325,
+ 0.07215,
+ 0.06105,
+ 0.05365,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04625,
+ 0.0481,
+ 0.0481,
+ 0.0481,
+ 0.0555,
+ 0.06105,
+ 0.0666,
+ 0.06475,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.07585,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04255,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0555,
+ 0.0592,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.05365,
+ 0.0555,
+ 0.0592,
+ 0.0703,
+ 0.07215,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0518,
+ 0.0407,
+ 0.04625,
+ 0.04255,
+ 0.037,
+ 0.03515,
+ 0.03885,
+ 0.0444,
+ 0.0407,
+ 0.04625,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.05365,
+ 0.06105,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.03885,
+ 0.0407,
+ 0.04255,
+ 0.04255,
+ 0.04255,
+ 0.0407,
+ 0.04625,
+ 0.04995,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0666,
+ 0.074,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.07955,
+ 0.0703,
+ 0.0629,
+ 0.07215,
+ 0.06845,
+ 0.0592,
+ 0.05365,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.04995,
+ 0.0518,
+ 0.0518,
+ 0.05735,
+ 0.0629,
+ 0.0666,
+ 0.10175,
+ 0.074,
+ 0.07215,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0777,
+ 0.0629,
+ 0.06105,
+ 0.06475,
+ 0.0703,
+ 0.06105,
+ 0.06105,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0555,
+ 0.0444,
+ 0.0555,
+ 0.0555,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.0518,
+ 0.04995,
+ 0.0481,
+ 0.0481,
+ 0.04625,
+ 0.04625,
+ 0.0481,
+ 0.05365,
+ 0.0592,
+ 0.06845,
+ 0.08695,
+ 0.0592,
+ 0.0555,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.06475,
+ 0.06105,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.0518,
+ 0.04995,
+ 0.06105,
+ 0.074,
+ 0.06105,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.04995,
+ 0.0518,
+ 0.0481,
+ 0.0518,
+ 0.05735,
+ 0.0592,
+ 0.06105,
+ 0.0592,
+ 0.0555,
+ 0.04995,
+ 0.0481,
+ 0.04995,
+ 0.0444,
+ 0.0444,
+ 0.0296,
+ 0.04255,
+ 0.04995,
+ 0.06105,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.04995,
+ 0.04625,
+ 0.04255,
+ 0.0444,
+ 0.04625,
+ 0.0518,
+ 0.0555,
+ 0.0518,
+ 0.0518,
+ 0.0481,
+ 0.04625,
+ 0.02775,
+ 0.0407,
+ 0.037,
+ 0.04255,
+ 0.02775,
+ 0.04255,
+ 0.02775,
+ 0.03885,
+ 0.04255,
+ 0.04625,
+ 0.0518,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.0481,
+ 0.05365,
+ 0.05735,
+ 0.05735,
+ 0.0592,
+ 0.0592,
+ 0.0555,
+ 0.05365,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04625,
+ 0.04995,
+ 0.04995,
+ 0.0555,
+ 0.05735,
+ 0.06105,
+ 0.06475,
+ 0.0629,
+ 0.0629,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.05735,
+ 0.06845,
+ 0.0666,
+ 0.06475,
+ 0.06475,
+ 0.0629,
+ 0.05735,
+ 0.05365,
+ 0.06105,
+ 0.0555,
+ 0.05365,
+ 0.05365,
+ 0.0518,
+ 0.04995,
+ 0.05365,
+ 0.06105,
+ 0.06475,
+ 0.06475,
+ 0.0629,
+ 0.0666,
+ 0.0592,
+ 0.05735,
+ 0.05735,
+ 0.0555,
+ 0.05735,
+ 0.0666,
+ 0.0629,
+ 0.06105,
+ 0.0592,
+ 0.05735,
+ 0.0555,
+ 0.05735
+ ],
+ "sector": "Residential",
+ "utility": "Sample Utility"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/data/detailed_rates/TOU/Sample Time-of-Use Rate.json b/resources/data/detailed_rates/TOU/Sample Time-of-Use Rate.json
new file mode 100644
index 0000000000..9e3650a091
--- /dev/null
+++ b/resources/data/detailed_rates/TOU/Sample Time-of-Use Rate.json
@@ -0,0 +1,653 @@
+{
+ "items": [
+ {
+ "name": "Sample Time-of-Use Rate",
+ "sector": "Residential",
+ "description": "Sample file defined by BEopt.",
+ "fixedchargeunits": "$/month",
+ "fixedchargefirstmeter": 9,
+ "energyweekdayschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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
+ ]
+ ],
+ "energyweekendschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyratestructure": [
+ [
+ {
+ "rate": 0.07,
+ "unit": "kWh"
+ }
+ ],
+ [
+ {
+ "rate": 0.11,
+ "unit": "kWh"
+ }
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json b/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json
new file mode 100644
index 0000000000..964cd8c538
--- /dev/null
+++ b/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json
@@ -0,0 +1,657 @@
+{
+ "items": [
+ {
+ "name": "Sample Tiered Rate",
+ "sector": "Residential",
+ "description": "Sample file defined by BEopt.",
+ "fixedchargeunits": "$/month",
+ "fixedchargefirstmeter": 9,
+ "energyweekdayschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyweekendschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyratestructure": [
+ [
+ {
+ "max": 150,
+ "rate": 0.09,
+ "unit": "kWh"
+ },
+ {
+ "max": 300,
+ "rate": 0.11,
+ "unit": "kWh"
+ },
+ {
+ "rate": 0.13,
+ "unit": "kWh"
+ }
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/data/detailed_rates/TieredTOU/Sample Tiered Time-of-Use Rate.json b/resources/data/detailed_rates/TieredTOU/Sample Tiered Time-of-Use Rate.json
new file mode 100644
index 0000000000..cdfc44c4c3
--- /dev/null
+++ b/resources/data/detailed_rates/TieredTOU/Sample Tiered Time-of-Use Rate.json
@@ -0,0 +1,668 @@
+{
+ "items": [
+ {
+ "name": "Sample Tiered Time-of-Use Rate",
+ "sector": "Residential",
+ "description": "Sample file defined by BEopt.",
+ "fixedchargeunits": "$/month",
+ "fixedchargefirstmeter": 9,
+ "energyweekdayschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 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,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 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
+ ]
+ ],
+ "energyweekendschedule": [
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ ],
+ "energyratestructure": [
+ [
+ {
+ "max": 150,
+ "rate": 0.06,
+ "unit": "kWh"
+ },
+ {
+ "rate": 0.08,
+ "unit": "kWh"
+ }
+ ],
+ [
+ {
+ "max": 150,
+ "rate": 0.09,
+ "unit": "kWh"
+ },
+ {
+ "max": 300,
+ "rate": 0.11,
+ "unit": "kWh"
+ },
+ {
+ "rate": 0.13,
+ "unit": "kWh"
+ }
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/data/dictionary/inputs.csv b/resources/data/dictionary/inputs.csv
index 3d4ec47295..e79b9217ab 100644
--- a/resources/data/dictionary/inputs.csv
+++ b/resources/data/dictionary/inputs.csv
@@ -1,242 +1,244 @@
-Input Name,Input Description
-build_existing_model.ahs_region,:ref:`ahs_region`
-build_existing_model.aiannh_area,:ref:`aiannh_area`
-build_existing_model.area_median_income,:ref:`area_median_income`
-build_existing_model.ashrae_iecc_climate_zone_2004,:ref:`ashrae_iecc_climate_zone_2004`
-build_existing_model.ashrae_iecc_climate_zone_2004_2_a_split,:ref:`ashrae_iecc_climate_zone_2004___2_a_split`
-build_existing_model.bathroom_spot_vent_hour,:ref:`bathroom_spot_vent_hour`
-build_existing_model.battery,:ref:`battery`
-build_existing_model.bedrooms,:ref:`bedrooms`
-build_existing_model.building_america_climate_zone,:ref:`building_america_climate_zone`
-build_existing_model.cec_climate_zone,:ref:`cec_climate_zone`
-build_existing_model.ceiling_fan,:ref:`ceiling_fan`
-build_existing_model.census_division,:ref:`census_division`
-build_existing_model.census_division_recs,:ref:`census_division_recs`
-build_existing_model.census_region,:ref:`census_region`
-build_existing_model.city,:ref:`city`
-build_existing_model.clothes_dryer,:ref:`clothes_dryer`
-build_existing_model.clothes_dryer_usage_level,:ref:`clothes_dryer_usage_level`
-build_existing_model.clothes_washer,:ref:`clothes_washer`
-build_existing_model.clothes_washer_presence,:ref:`clothes_washer_presence`
-build_existing_model.clothes_washer_usage_level,:ref:`clothes_washer_usage_level`
-build_existing_model.cooking_range,:ref:`cooking_range`
-build_existing_model.cooking_range_usage_level,:ref:`cooking_range_usage_level`
-build_existing_model.cooling_setpoint,:ref:`cooling_setpoint`
-build_existing_model.cooling_setpoint_has_offset,:ref:`cooling_setpoint_has_offset`
-build_existing_model.cooling_setpoint_offset_magnitude,:ref:`cooling_setpoint_offset_magnitude`
-build_existing_model.cooling_setpoint_offset_period,:ref:`cooling_setpoint_offset_period`
-build_existing_model.corridor,:ref:`corridor`
-build_existing_model.county,:ref:`county`
-build_existing_model.county_and_puma,:ref:`county_and_puma`
-build_existing_model.dehumidifier,:ref:`dehumidifier`
-build_existing_model.dishwasher,:ref:`dishwasher`
-build_existing_model.dishwasher_usage_level,:ref:`dishwasher_usage_level`
-build_existing_model.door_area,:ref:`door_area`
-build_existing_model.doors,:ref:`doors`
-build_existing_model.duct_leakage_and_insulation,:ref:`duct_leakage_and_insulation`
-build_existing_model.duct_location,:ref:`duct_location`
-build_existing_model.eaves,:ref:`eaves`
-build_existing_model.electric_vehicle,:ref:`electric_vehicle`
-build_existing_model.energystar_climate_zone_2023,:ref:`energystar_climate_zone_2023`
-build_existing_model.federal_poverty_level,:ref:`federal_poverty_level`
-build_existing_model.generation_and_emissions_assessment_region,:ref:`generation_and_emissions_assessment_region`
-build_existing_model.geometry_attic_type,:ref:`geometry_attic_type`
-build_existing_model.geometry_building_horizontal_location_mf,:ref:`geometry_building_horizontal_location_mf`
-build_existing_model.geometry_building_horizontal_location_sfa,:ref:`geometry_building_horizontal_location_sfa`
-build_existing_model.geometry_building_level_mf,:ref:`geometry_building_level_mf`
-build_existing_model.geometry_building_number_units_mf,:ref:`geometry_building_number_units_mf`
-build_existing_model.geometry_building_number_units_sfa,:ref:`geometry_building_number_units_sfa`
-build_existing_model.geometry_building_type_acs,:ref:`geometry_building_type_acs`
-build_existing_model.geometry_building_type_height,:ref:`geometry_building_type_height`
-build_existing_model.geometry_building_type_recs,:ref:`geometry_building_type_recs`
-build_existing_model.geometry_floor_area,:ref:`geometry_floor_area`
-build_existing_model.geometry_floor_area_bin,:ref:`geometry_floor_area_bin`
-build_existing_model.geometry_foundation_type,:ref:`geometry_foundation_type`
-build_existing_model.geometry_garage,:ref:`geometry_garage`
-build_existing_model.geometry_space_combination,:ref:`geometry_space_combination`
-build_existing_model.geometry_stories,:ref:`geometry_stories`
-build_existing_model.geometry_stories_low_rise,:ref:`geometry_stories_low_rise`
-build_existing_model.geometry_story_bin,:ref:`geometry_story_bin`
-build_existing_model.geometry_wall_exterior_finish,:ref:`geometry_wall_exterior_finish`
-build_existing_model.geometry_wall_type,:ref:`geometry_wall_type`
-build_existing_model.has_pv,:ref:`has_pv`
-build_existing_model.heating_fuel,:ref:`heating_fuel`
-build_existing_model.heating_setpoint,:ref:`heating_setpoint`
-build_existing_model.heating_setpoint_has_offset,:ref:`heating_setpoint_has_offset`
-build_existing_model.heating_setpoint_offset_magnitude,:ref:`heating_setpoint_offset_magnitude`
-build_existing_model.heating_setpoint_offset_period,:ref:`heating_setpoint_offset_period`
-build_existing_model.holiday_lighting,:ref:`holiday_lighting`
-build_existing_model.hot_water_distribution,:ref:`hot_water_distribution`
-build_existing_model.hot_water_fixtures,:ref:`hot_water_fixtures`
-build_existing_model.household_has_tribal_persons,:ref:`household_has_tribal_persons`
-build_existing_model.hvac_cooling_efficiency,:ref:`hvac_cooling_efficiency`
-build_existing_model.hvac_cooling_partial_space_conditioning,:ref:`hvac_cooling_partial_space_conditioning`
-build_existing_model.hvac_cooling_type,:ref:`hvac_cooling_type`
-build_existing_model.hvac_has_ducts,:ref:`hvac_has_ducts`
-build_existing_model.hvac_has_shared_system,:ref:`hvac_has_shared_system`
-build_existing_model.hvac_has_zonal_electric_heating,:ref:`hvac_has_zonal_electric_heating`
-build_existing_model.hvac_heating_efficiency,:ref:`hvac_heating_efficiency`
-build_existing_model.hvac_heating_type,:ref:`hvac_heating_type`
-build_existing_model.hvac_heating_type_and_fuel,:ref:`hvac_heating_type_and_fuel`
-build_existing_model.hvac_secondary_heating_efficiency,:ref:`hvac_secondary_heating_efficiency`
-build_existing_model.hvac_secondary_heating_fuel,:ref:`hvac_secondary_heating_fuel`
-build_existing_model.hvac_secondary_heating_partial_space_conditioning,:ref:`hvac_secondary_heating_partial_space_conditioning`
-build_existing_model.hvac_shared_efficiencies,:ref:`hvac_shared_efficiencies`
-build_existing_model.hvac_system_is_faulted,:ref:`hvac_system_is_faulted`
-build_existing_model.hvac_system_single_speed_ac_airflow,:ref:`hvac_system_single_speed_ac_airflow`
-build_existing_model.hvac_system_single_speed_ac_charge,:ref:`hvac_system_single_speed_ac_charge`
-build_existing_model.hvac_system_single_speed_ashp_airflow,:ref:`hvac_system_single_speed_ashp_airflow`
-build_existing_model.hvac_system_single_speed_ashp_charge,:ref:`hvac_system_single_speed_ashp_charge`
-build_existing_model.income,:ref:`income`
-build_existing_model.income_recs_2015,:ref:`income_recs2015`
-build_existing_model.income_recs_2020,:ref:`income_recs2020`
-build_existing_model.infiltration,:ref:`infiltration`
-build_existing_model.insulation_ceiling,:ref:`insulation_ceiling`
-build_existing_model.insulation_floor,:ref:`insulation_floor`
-build_existing_model.insulation_foundation_wall,:ref:`insulation_foundation_wall`
-build_existing_model.insulation_rim_joist,:ref:`insulation_rim_joist`
-build_existing_model.insulation_roof,:ref:`insulation_roof`
-build_existing_model.insulation_slab,:ref:`insulation_slab`
-build_existing_model.insulation_wall,:ref:`insulation_wall`
-build_existing_model.interior_shading,:ref:`interior_shading`
-build_existing_model.iso_rto_region,:ref:`iso_rto_region`
-build_existing_model.lighting,:ref:`lighting`
-build_existing_model.lighting_interior_use,:ref:`lighting_interior_use`
-build_existing_model.lighting_other_use,:ref:`lighting_other_use`
-build_existing_model.location_region,:ref:`location_region`
-build_existing_model.mechanical_ventilation,:ref:`mechanical_ventilation`
-build_existing_model.misc_extra_refrigerator,:ref:`misc_extra_refrigerator`
-build_existing_model.misc_freezer,:ref:`misc_freezer`
-build_existing_model.misc_gas_fireplace,:ref:`misc_gas_fireplace`
-build_existing_model.misc_gas_grill,:ref:`misc_gas_grill`
-build_existing_model.misc_gas_lighting,:ref:`misc_gas_lighting`
-build_existing_model.misc_hot_tub_spa,:ref:`misc_hot_tub_spa`
-build_existing_model.misc_pool,:ref:`misc_pool`
-build_existing_model.misc_pool_heater,:ref:`misc_pool_heater`
-build_existing_model.misc_pool_pump,:ref:`misc_pool_pump`
-build_existing_model.misc_well_pump,:ref:`misc_well_pump`
-build_existing_model.natural_ventilation,:ref:`natural_ventilation`
-build_existing_model.neighbors,:ref:`neighbors`
-build_existing_model.occupants,:ref:`occupants`
-build_existing_model.orientation,:ref:`orientation`
-build_existing_model.overhangs,:ref:`overhangs`
-build_existing_model.plug_load_diversity,:ref:`plug_load_diversity`
-build_existing_model.plug_loads,:ref:`plug_loads`
-build_existing_model.puma,:ref:`puma`
-build_existing_model.puma_metro_status,:ref:`puma_metro_status`
-build_existing_model.pv_orientation,:ref:`pv_orientation`
-build_existing_model.pv_system_size,:ref:`pv_system_size`
-build_existing_model.radiant_barrier,:ref:`radiant_barrier`
-build_existing_model.range_spot_vent_hour,:ref:`range_spot_vent_hour`
-build_existing_model.reeds_balancing_area,:ref:`reeds_balancing_area`
-build_existing_model.refrigerator,:ref:`refrigerator`
-build_existing_model.refrigerator_usage_level,:ref:`refrigerator_usage_level`
-build_existing_model.roof_material,:ref:`roof_material`
-build_existing_model.solar_hot_water,:ref:`solar_hot_water`
-build_existing_model.state,:ref:`state`
-build_existing_model.tenure,:ref:`tenure`
-build_existing_model.usage_level,:ref:`usage_level`
-build_existing_model.vacancy_status,:ref:`vacancy_status`
-build_existing_model.vintage,:ref:`vintage`
-build_existing_model.vintage_acs,:ref:`vintage_acs`
-build_existing_model.water_heater_efficiency,:ref:`water_heater_efficiency`
-build_existing_model.water_heater_fuel,:ref:`water_heater_fuel`
-build_existing_model.water_heater_in_unit,:ref:`water_heater_in_unit`
-build_existing_model.water_heater_location,:ref:`water_heater_location`
-build_existing_model.window_areas,:ref:`window_areas`
-build_existing_model.windows,:ref:`windows`
-building_id,The building unit number (between 1 and the number of samples).
-job_id,The unique identifier of the job/processor.
-started_at,Simulation start time.
-completed_at,Simulation end time.
-completed_status,"Simulation Success, Fail, or Invalid."
-build_existing_model.applicable,The measure was applied to the workflow.
-build_existing_model.sample_weight,Number of buildings this simulation represents.
-build_existing_model.units_represented,The number of dwelling units this simulation represents. Should always be one.
-build_existing_model.emissions_electricity_folders,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names."
-build_existing_model.emissions_electricity_units,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed."
-build_existing_model.emissions_electricity_values_or_filepaths,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_fossil_fuel_units,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed."
-build_existing_model.emissions_fuel_oil_values,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_natural_gas_values,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_propane_values,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_scenario_names,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_types,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list."
-build_existing_model.emissions_wood_values,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
-build_existing_model.simulation_control_run_period_begin_day_of_month,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired.
-build_existing_model.simulation_control_run_period_begin_month,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired."
-build_existing_model.simulation_control_run_period_calendar_year,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file."
-build_existing_model.simulation_control_run_period_end_day_of_month,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired.
-build_existing_model.simulation_control_run_period_end_month,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired."
-build_existing_model.simulation_control_timestep,Value must be a divisor of 60.
-build_existing_model.utility_bill_electricity_fixed_charges,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_electricity_marginal_rates,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_fuel_oil_fixed_charges,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_fuel_oil_marginal_rates,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_natural_gas_fixed_charges,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_natural_gas_marginal_rates,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_propane_fixed_charges,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_propane_marginal_rates,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_compensation_types,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_feed_in_tariff_rates,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_monthly_grid_connection_fees,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_simple_filepaths,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header."
-build_existing_model.utility_bill_wood_fixed_charges,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
-build_existing_model.utility_bill_wood_marginal_rates,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list."
-build_existing_model.weather_file_city,City from the EPW weather file.
-build_existing_model.weather_file_latitude,Latitude from the EPW weather file.
-build_existing_model.weather_file_longitude,Longitude from the EPW weather file.
-apply_upgrade.applicable,The measure was applied to the workflow.
-apply_upgrade.upgrade_name,User-specificed name that describes the upgrade.
-apply_upgrade.reference_scenario,The upgrade_name which should act as a reference to this upgrade to calculate savings.
-report_simulation_output.applicable,The measure was applied to the workflow.
-report_simulation_output.output_format,"The file format of the annual (and timeseries, if requested) outputs. If 'csv_dview' is selected, the timeseries CSV file will include header rows that facilitate opening the file in the DView application."
-report_simulation_output.timeseries_frequency,The frequency at which to report timeseries output data. Using 'none' will disable timeseries outputs.
-report_simulation_output.include_annual_total_consumptions,Generates annual energy consumptions for the total building.
-report_simulation_output.include_annual_fuel_consumptions,Generates annual energy consumptions for each fuel type.
-report_simulation_output.include_annual_end_use_consumptions,Generates annual energy consumptions for each end use.
-report_simulation_output.include_annual_system_use_consumptions,Generates annual energy consumptions for each end use of each HVAC and water heating system.
-report_simulation_output.include_annual_emissions,Generates annual emissions. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_annual_emission_fuels,Generates annual emissions for each fuel type. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_annual_emission_end_uses,Generates annual emissions for each end use. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_annual_total_loads,"Generates annual heating, cooling, and hot water loads."
-report_simulation_output.include_annual_unmet_hours,Generates annual unmet hours for heating and cooling.
-report_simulation_output.include_annual_peak_fuels,Generates annual electricity peaks for summer/winter.
-report_simulation_output.include_annual_peak_loads,Generates annual peak loads for heating/cooling.
-report_simulation_output.include_annual_component_loads,Generates annual heating and cooling loads disaggregated by component type.
-report_simulation_output.include_annual_hot_water_uses,Generates annual hot water usages for each end use.
-report_simulation_output.include_annual_hvac_summary,"Generates HVAC capacities, design temperatures, and design loads."
-report_simulation_output.include_annual_resilience,Generates annual resilience outputs.
-report_simulation_output.include_timeseries_total_consumptions,Generates timeseries energy consumptions for the total building.
-report_simulation_output.include_timeseries_fuel_consumptions,Generates timeseries energy consumptions for each fuel type.
-report_simulation_output.include_timeseries_end_use_consumptions,Generates timeseries energy consumptions for each end use.
-report_simulation_output.include_timeseries_system_use_consumptions,Generates timeseries energy consumptions for each end use of each HVAC and water heating system.
-report_simulation_output.include_timeseries_emissions,Generates timeseries emissions. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_timeseries_emission_fuels,Generates timeseries emissions for each fuel type. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_timeseries_emission_end_uses,Generates timeseries emissions for each end use. Requires the appropriate HPXML inputs to be specified.
-report_simulation_output.include_timeseries_hot_water_uses,Generates timeseries hot water usages for each end use.
-report_simulation_output.include_timeseries_total_loads,"Generates timeseries total heating, cooling, and hot water loads."
-report_simulation_output.include_timeseries_component_loads,Generates timeseries heating and cooling loads disaggregated by component type.
-report_simulation_output.include_timeseries_unmet_hours,Generates timeseries unmet hours for heating and cooling.
-report_simulation_output.include_timeseries_zone_temperatures,Generates timeseries temperatures for each thermal zone.
-report_simulation_output.include_timeseries_airflows,Generates timeseries airflows.
-report_simulation_output.include_timeseries_weather,Generates timeseries weather data.
-report_simulation_output.include_timeseries_resilience,Generates timeseries resilience outputs.
-report_simulation_output.timeseries_timestamp_convention,Determines whether timeseries timestamps use the start-of-period or end-of-period convention. Doesn't apply if the output format is 'csv_dview'.
-report_simulation_output.timeseries_num_decimal_places,"Allows overriding the default number of decimal places for timeseries output. Does not apply if output format is msgpack, where no rounding is performed because there is no file size penalty to storing full precision."
-report_simulation_output.add_timeseries_dst_column,"Optionally add, in addition to the default local standard Time column, a local clock TimeDST column. Requires that daylight saving time is enabled."
-report_simulation_output.add_timeseries_utc_column,"Optionally add, in addition to the default local standard Time column, a local clock TimeUTC column. If the time zone UTC offset is not provided in the HPXML file, the time zone in the EPW header will be used."
-report_simulation_output.user_output_variables,"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"""
-report_utility_bills.applicable,The measure was applied to the workflow.
-report_utility_bills.output_format,"The file format of the annual (and timeseries, if requested) outputs."
-report_utility_bills.include_annual_bills,Generates annual utility bills.
-report_utility_bills.include_monthly_bills,Generates monthly utility bills.
-report_utility_bills.monthly_timestamp_convention,Determines whether monthly timestamps use the start-of-period or end-of-period convention.
-upgrade_costs.applicable,The measure was applied to the workflow.
-upgrade_costs.debug,"If true, retain existing and upgraded intermediate files."
-upgrade_costs.upgrade_cost_usd,Total cost of the upgrade.
+Input Name,Input Description
+build_existing_model.ahs_region,:ref:`ahs_region`
+build_existing_model.aiannh_area,:ref:`aiannh_area`
+build_existing_model.area_median_income,:ref:`area_median_income`
+build_existing_model.ashrae_iecc_climate_zone_2004,:ref:`ashrae_iecc_climate_zone_2004`
+build_existing_model.ashrae_iecc_climate_zone_2004_2_a_split,:ref:`ashrae_iecc_climate_zone_2004___2_a_split`
+build_existing_model.bathroom_spot_vent_hour,:ref:`bathroom_spot_vent_hour`
+build_existing_model.battery,:ref:`battery`
+build_existing_model.bedrooms,:ref:`bedrooms`
+build_existing_model.building_america_climate_zone,:ref:`building_america_climate_zone`
+build_existing_model.cec_climate_zone,:ref:`cec_climate_zone`
+build_existing_model.ceiling_fan,:ref:`ceiling_fan`
+build_existing_model.census_division,:ref:`census_division`
+build_existing_model.census_division_recs,:ref:`census_division_recs`
+build_existing_model.census_region,:ref:`census_region`
+build_existing_model.city,:ref:`city`
+build_existing_model.clothes_dryer,:ref:`clothes_dryer`
+build_existing_model.clothes_dryer_usage_level,:ref:`clothes_dryer_usage_level`
+build_existing_model.clothes_washer,:ref:`clothes_washer`
+build_existing_model.clothes_washer_presence,:ref:`clothes_washer_presence`
+build_existing_model.clothes_washer_usage_level,:ref:`clothes_washer_usage_level`
+build_existing_model.cooking_range,:ref:`cooking_range`
+build_existing_model.cooking_range_usage_level,:ref:`cooking_range_usage_level`
+build_existing_model.cooling_setpoint,:ref:`cooling_setpoint`
+build_existing_model.cooling_setpoint_has_offset,:ref:`cooling_setpoint_has_offset`
+build_existing_model.cooling_setpoint_offset_magnitude,:ref:`cooling_setpoint_offset_magnitude`
+build_existing_model.cooling_setpoint_offset_period,:ref:`cooling_setpoint_offset_period`
+build_existing_model.corridor,:ref:`corridor`
+build_existing_model.county,:ref:`county`
+build_existing_model.county_and_puma,:ref:`county_and_puma`
+build_existing_model.dehumidifier,:ref:`dehumidifier`
+build_existing_model.dishwasher,:ref:`dishwasher`
+build_existing_model.dishwasher_usage_level,:ref:`dishwasher_usage_level`
+build_existing_model.door_area,:ref:`door_area`
+build_existing_model.doors,:ref:`doors`
+build_existing_model.duct_leakage_and_insulation,:ref:`duct_leakage_and_insulation`
+build_existing_model.duct_location,:ref:`duct_location`
+build_existing_model.eaves,:ref:`eaves`
+build_existing_model.electric_vehicle,:ref:`electric_vehicle`
+build_existing_model.energystar_climate_zone_2023,:ref:`energystar_climate_zone_2023`
+build_existing_model.federal_poverty_level,:ref:`federal_poverty_level`
+build_existing_model.generation_and_emissions_assessment_region,:ref:`generation_and_emissions_assessment_region`
+build_existing_model.geometry_attic_type,:ref:`geometry_attic_type`
+build_existing_model.geometry_building_horizontal_location_mf,:ref:`geometry_building_horizontal_location_mf`
+build_existing_model.geometry_building_horizontal_location_sfa,:ref:`geometry_building_horizontal_location_sfa`
+build_existing_model.geometry_building_level_mf,:ref:`geometry_building_level_mf`
+build_existing_model.geometry_building_number_units_mf,:ref:`geometry_building_number_units_mf`
+build_existing_model.geometry_building_number_units_sfa,:ref:`geometry_building_number_units_sfa`
+build_existing_model.geometry_building_type_acs,:ref:`geometry_building_type_acs`
+build_existing_model.geometry_building_type_height,:ref:`geometry_building_type_height`
+build_existing_model.geometry_building_type_recs,:ref:`geometry_building_type_recs`
+build_existing_model.geometry_floor_area,:ref:`geometry_floor_area`
+build_existing_model.geometry_floor_area_bin,:ref:`geometry_floor_area_bin`
+build_existing_model.geometry_foundation_type,:ref:`geometry_foundation_type`
+build_existing_model.geometry_garage,:ref:`geometry_garage`
+build_existing_model.geometry_space_combination,:ref:`geometry_space_combination`
+build_existing_model.geometry_stories,:ref:`geometry_stories`
+build_existing_model.geometry_stories_low_rise,:ref:`geometry_stories_low_rise`
+build_existing_model.geometry_story_bin,:ref:`geometry_story_bin`
+build_existing_model.geometry_wall_exterior_finish,:ref:`geometry_wall_exterior_finish`
+build_existing_model.geometry_wall_type,:ref:`geometry_wall_type`
+build_existing_model.has_pv,:ref:`has_pv`
+build_existing_model.heating_fuel,:ref:`heating_fuel`
+build_existing_model.heating_setpoint,:ref:`heating_setpoint`
+build_existing_model.heating_setpoint_has_offset,:ref:`heating_setpoint_has_offset`
+build_existing_model.heating_setpoint_offset_magnitude,:ref:`heating_setpoint_offset_magnitude`
+build_existing_model.heating_setpoint_offset_period,:ref:`heating_setpoint_offset_period`
+build_existing_model.holiday_lighting,:ref:`holiday_lighting`
+build_existing_model.hot_water_distribution,:ref:`hot_water_distribution`
+build_existing_model.hot_water_fixtures,:ref:`hot_water_fixtures`
+build_existing_model.household_has_tribal_persons,:ref:`household_has_tribal_persons`
+build_existing_model.hvac_cooling_efficiency,:ref:`hvac_cooling_efficiency`
+build_existing_model.hvac_cooling_partial_space_conditioning,:ref:`hvac_cooling_partial_space_conditioning`
+build_existing_model.hvac_cooling_type,:ref:`hvac_cooling_type`
+build_existing_model.hvac_has_ducts,:ref:`hvac_has_ducts`
+build_existing_model.hvac_has_shared_system,:ref:`hvac_has_shared_system`
+build_existing_model.hvac_has_zonal_electric_heating,:ref:`hvac_has_zonal_electric_heating`
+build_existing_model.hvac_heating_efficiency,:ref:`hvac_heating_efficiency`
+build_existing_model.hvac_heating_type,:ref:`hvac_heating_type`
+build_existing_model.hvac_heating_type_and_fuel,:ref:`hvac_heating_type_and_fuel`
+build_existing_model.hvac_secondary_heating_efficiency,:ref:`hvac_secondary_heating_efficiency`
+build_existing_model.hvac_secondary_heating_fuel,:ref:`hvac_secondary_heating_fuel`
+build_existing_model.hvac_secondary_heating_partial_space_conditioning,:ref:`hvac_secondary_heating_partial_space_conditioning`
+build_existing_model.hvac_shared_efficiencies,:ref:`hvac_shared_efficiencies`
+build_existing_model.hvac_system_is_faulted,:ref:`hvac_system_is_faulted`
+build_existing_model.hvac_system_single_speed_ac_airflow,:ref:`hvac_system_single_speed_ac_airflow`
+build_existing_model.hvac_system_single_speed_ac_charge,:ref:`hvac_system_single_speed_ac_charge`
+build_existing_model.hvac_system_single_speed_ashp_airflow,:ref:`hvac_system_single_speed_ashp_airflow`
+build_existing_model.hvac_system_single_speed_ashp_charge,:ref:`hvac_system_single_speed_ashp_charge`
+build_existing_model.income,:ref:`income`
+build_existing_model.income_recs_2015,:ref:`income_recs2015`
+build_existing_model.income_recs_2020,:ref:`income_recs2020`
+build_existing_model.infiltration,:ref:`infiltration`
+build_existing_model.insulation_ceiling,:ref:`insulation_ceiling`
+build_existing_model.insulation_floor,:ref:`insulation_floor`
+build_existing_model.insulation_foundation_wall,:ref:`insulation_foundation_wall`
+build_existing_model.insulation_rim_joist,:ref:`insulation_rim_joist`
+build_existing_model.insulation_roof,:ref:`insulation_roof`
+build_existing_model.insulation_slab,:ref:`insulation_slab`
+build_existing_model.insulation_wall,:ref:`insulation_wall`
+build_existing_model.interior_shading,:ref:`interior_shading`
+build_existing_model.iso_rto_region,:ref:`iso_rto_region`
+build_existing_model.lighting,:ref:`lighting`
+build_existing_model.lighting_interior_use,:ref:`lighting_interior_use`
+build_existing_model.lighting_other_use,:ref:`lighting_other_use`
+build_existing_model.location_region,:ref:`location_region`
+build_existing_model.mechanical_ventilation,:ref:`mechanical_ventilation`
+build_existing_model.misc_extra_refrigerator,:ref:`misc_extra_refrigerator`
+build_existing_model.misc_freezer,:ref:`misc_freezer`
+build_existing_model.misc_gas_fireplace,:ref:`misc_gas_fireplace`
+build_existing_model.misc_gas_grill,:ref:`misc_gas_grill`
+build_existing_model.misc_gas_lighting,:ref:`misc_gas_lighting`
+build_existing_model.misc_hot_tub_spa,:ref:`misc_hot_tub_spa`
+build_existing_model.misc_pool,:ref:`misc_pool`
+build_existing_model.misc_pool_heater,:ref:`misc_pool_heater`
+build_existing_model.misc_pool_pump,:ref:`misc_pool_pump`
+build_existing_model.misc_well_pump,:ref:`misc_well_pump`
+build_existing_model.natural_ventilation,:ref:`natural_ventilation`
+build_existing_model.neighbors,:ref:`neighbors`
+build_existing_model.occupants,:ref:`occupants`
+build_existing_model.orientation,:ref:`orientation`
+build_existing_model.overhangs,:ref:`overhangs`
+build_existing_model.plug_load_diversity,:ref:`plug_load_diversity`
+build_existing_model.plug_loads,:ref:`plug_loads`
+build_existing_model.puma,:ref:`puma`
+build_existing_model.puma_metro_status,:ref:`puma_metro_status`
+build_existing_model.pv_orientation,:ref:`pv_orientation`
+build_existing_model.pv_system_size,:ref:`pv_system_size`
+build_existing_model.radiant_barrier,:ref:`radiant_barrier`
+build_existing_model.range_spot_vent_hour,:ref:`range_spot_vent_hour`
+build_existing_model.reeds_balancing_area,:ref:`reeds_balancing_area`
+build_existing_model.refrigerator,:ref:`refrigerator`
+build_existing_model.refrigerator_usage_level,:ref:`refrigerator_usage_level`
+build_existing_model.roof_material,:ref:`roof_material`
+build_existing_model.solar_hot_water,:ref:`solar_hot_water`
+build_existing_model.state,:ref:`state`
+build_existing_model.tenure,:ref:`tenure`
+build_existing_model.usage_level,:ref:`usage_level`
+build_existing_model.vacancy_status,:ref:`vacancy_status`
+build_existing_model.vintage,:ref:`vintage`
+build_existing_model.vintage_acs,:ref:`vintage_acs`
+build_existing_model.water_heater_efficiency,:ref:`water_heater_efficiency`
+build_existing_model.water_heater_fuel,:ref:`water_heater_fuel`
+build_existing_model.water_heater_in_unit,:ref:`water_heater_in_unit`
+build_existing_model.water_heater_location,:ref:`water_heater_location`
+build_existing_model.window_areas,:ref:`window_areas`
+build_existing_model.windows,:ref:`windows`
+building_id,The building unit number (between 1 and the number of samples).
+job_id,The unique identifier of the job/processor.
+started_at,Simulation start time.
+completed_at,Simulation end time.
+completed_status,"Simulation Success, Fail, or Invalid."
+build_existing_model.applicable,The measure was applied to the workflow.
+build_existing_model.sample_weight,Number of buildings this simulation represents.
+build_existing_model.units_represented,The number of dwelling units this simulation represents. Should always be one.
+build_existing_model.emissions_electricity_folders,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names."
+build_existing_model.emissions_electricity_units,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed."
+build_existing_model.emissions_electricity_values_or_filepaths,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_fossil_fuel_units,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed."
+build_existing_model.emissions_fuel_oil_values,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_natural_gas_values,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_propane_values,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_scenario_names,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_types,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list."
+build_existing_model.emissions_wood_values,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list."
+build_existing_model.simulation_control_run_period_begin_day_of_month,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired.
+build_existing_model.simulation_control_run_period_begin_month,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired."
+build_existing_model.simulation_control_run_period_calendar_year,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file."
+build_existing_model.simulation_control_run_period_end_day_of_month,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired.
+build_existing_model.simulation_control_run_period_end_month,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired."
+build_existing_model.simulation_control_timestep,Value must be a divisor of 60.
+build_existing_model.utility_bill_detailed_filepaths,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header."
+build_existing_model.utility_bill_electricity_filepaths,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_electricity_fixed_charges,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_electricity_marginal_rates,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_fuel_oil_fixed_charges,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_fuel_oil_marginal_rates,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_natural_gas_fixed_charges,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_natural_gas_marginal_rates,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_propane_fixed_charges,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_propane_marginal_rates,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_compensation_types,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_feed_in_tariff_rates,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_monthly_grid_connection_fees,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_simple_filepaths,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header."
+build_existing_model.utility_bill_wood_fixed_charges,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list."
+build_existing_model.utility_bill_wood_marginal_rates,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list."
+build_existing_model.weather_file_city,City from the EPW weather file.
+build_existing_model.weather_file_latitude,Latitude from the EPW weather file.
+build_existing_model.weather_file_longitude,Longitude from the EPW weather file.
+apply_upgrade.applicable,The measure was applied to the workflow.
+apply_upgrade.upgrade_name,User-specificed name that describes the upgrade.
+apply_upgrade.reference_scenario,The upgrade_name which should act as a reference to this upgrade to calculate savings.
+report_simulation_output.applicable,The measure was applied to the workflow.
+report_simulation_output.output_format,"The file format of the annual (and timeseries, if requested) outputs. If 'csv_dview' is selected, the timeseries CSV file will include header rows that facilitate opening the file in the DView application."
+report_simulation_output.timeseries_frequency,The frequency at which to report timeseries output data. Using 'none' will disable timeseries outputs.
+report_simulation_output.include_annual_total_consumptions,Generates annual energy consumptions for the total building.
+report_simulation_output.include_annual_fuel_consumptions,Generates annual energy consumptions for each fuel type.
+report_simulation_output.include_annual_end_use_consumptions,Generates annual energy consumptions for each end use.
+report_simulation_output.include_annual_system_use_consumptions,Generates annual energy consumptions for each end use of each HVAC and water heating system.
+report_simulation_output.include_annual_emissions,Generates annual emissions. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_annual_emission_fuels,Generates annual emissions for each fuel type. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_annual_emission_end_uses,Generates annual emissions for each end use. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_annual_total_loads,"Generates annual heating, cooling, and hot water loads."
+report_simulation_output.include_annual_unmet_hours,Generates annual unmet hours for heating and cooling.
+report_simulation_output.include_annual_peak_fuels,Generates annual electricity peaks for summer/winter.
+report_simulation_output.include_annual_peak_loads,Generates annual peak loads for heating/cooling.
+report_simulation_output.include_annual_component_loads,Generates annual heating and cooling loads disaggregated by component type.
+report_simulation_output.include_annual_hot_water_uses,Generates annual hot water usages for each end use.
+report_simulation_output.include_annual_hvac_summary,"Generates HVAC capacities, design temperatures, and design loads."
+report_simulation_output.include_annual_resilience,Generates annual resilience outputs.
+report_simulation_output.include_timeseries_total_consumptions,Generates timeseries energy consumptions for the total building.
+report_simulation_output.include_timeseries_fuel_consumptions,Generates timeseries energy consumptions for each fuel type.
+report_simulation_output.include_timeseries_end_use_consumptions,Generates timeseries energy consumptions for each end use.
+report_simulation_output.include_timeseries_system_use_consumptions,Generates timeseries energy consumptions for each end use of each HVAC and water heating system.
+report_simulation_output.include_timeseries_emissions,Generates timeseries emissions. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_timeseries_emission_fuels,Generates timeseries emissions for each fuel type. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_timeseries_emission_end_uses,Generates timeseries emissions for each end use. Requires the appropriate HPXML inputs to be specified.
+report_simulation_output.include_timeseries_hot_water_uses,Generates timeseries hot water usages for each end use.
+report_simulation_output.include_timeseries_total_loads,"Generates timeseries total heating, cooling, and hot water loads."
+report_simulation_output.include_timeseries_component_loads,Generates timeseries heating and cooling loads disaggregated by component type.
+report_simulation_output.include_timeseries_unmet_hours,Generates timeseries unmet hours for heating and cooling.
+report_simulation_output.include_timeseries_zone_temperatures,Generates timeseries temperatures for each thermal zone.
+report_simulation_output.include_timeseries_airflows,Generates timeseries airflows.
+report_simulation_output.include_timeseries_weather,Generates timeseries weather data.
+report_simulation_output.include_timeseries_resilience,Generates timeseries resilience outputs.
+report_simulation_output.timeseries_timestamp_convention,Determines whether timeseries timestamps use the start-of-period or end-of-period convention. Doesn't apply if the output format is 'csv_dview'.
+report_simulation_output.timeseries_num_decimal_places,"Allows overriding the default number of decimal places for timeseries output. Does not apply if output format is msgpack, where no rounding is performed because there is no file size penalty to storing full precision."
+report_simulation_output.add_timeseries_dst_column,"Optionally add, in addition to the default local standard Time column, a local clock TimeDST column. Requires that daylight saving time is enabled."
+report_simulation_output.add_timeseries_utc_column,"Optionally add, in addition to the default local standard Time column, a local clock TimeUTC column. If the time zone UTC offset is not provided in the HPXML file, the time zone in the EPW header will be used."
+report_simulation_output.user_output_variables,"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"""
+report_utility_bills.applicable,The measure was applied to the workflow.
+report_utility_bills.output_format,"The file format of the annual (and timeseries, if requested) outputs."
+report_utility_bills.include_annual_bills,Generates annual utility bills.
+report_utility_bills.include_monthly_bills,Generates monthly utility bills.
+report_utility_bills.monthly_timestamp_convention,Determines whether monthly timestamps use the start-of-period or end-of-period convention.
+upgrade_costs.applicable,The measure was applied to the workflow.
+upgrade_costs.debug,"If true, retain existing and upgraded intermediate files."
+upgrade_costs.upgrade_cost_usd,Total cost of the upgrade.
qoi_report.applicable,The measure was applied to the workflow.
\ No newline at end of file
diff --git a/resources/data/simple_rates/County.tsv b/resources/data/simple_rates/County.tsv
deleted file mode 100644
index d9fde6d67e..0000000000
--- a/resources/data/simple_rates/County.tsv
+++ /dev/null
@@ -1,58 +0,0 @@
-County electricity_fixed_charge electricity_marginal_rate natural_gas_fixed_charge natural_gas_marginal_rate propane_fixed_charge propane_marginal_rate fuel_oil_fixed_charge fuel_oil_marginal_rate wood_fixed_charge wood_marginal_rate
-"AL, Autauga County" 9.6 0.089 9.7 0.105 0 2.4 0 2.7 0 0.002
-"AL, Baldwin County" 9.2 0.096 8.5 0.112 0 3.6 0 4 0 0.001
-"AL, Barbour County" 9.3 0.094 8.3 0.082 0 3.6 0 2.8 0 0.0013
-"AL, Bibb County" 9.8 0.085 11 0.093 0 2.2 0 2.6 0 0.002
-"AL, Blount County" 11.1 0.08 9.7 0.098 0 2.5 0 2.1 0 0.0011
-"AL, Bullock County" 11.1 0.106 11.5 0.115 0 2.4 0 3.4 0 0.0011
-"AL, Butler County" 11.7 0.096 10.1 0.082 0 2.9 0 3.6 0 0.001
-"AL, Calhoun County" 10.2 0.101 11.8 0.092 0 3.4 0 2.6 0 0.0019
-"AL, Chambers County" 9.7 0.091 9.4 0.099 0 3.2 0 3.2 0 0.0014
-"AL, Cherokee County" 8.8 0.108 11.2 0.108 0 2.4 0 3.5 0 0.0016
-"AL, Chilton County" 9.9 0.118 11.8 0.093 0 2.2 0 2.6 0 0.0019
-"AL, Choctaw County" 8.8 0.096 10.4 0.108 0 2 0 3.7 0 0.0012
-"AL, Clarke County" 10.3 0.107 9.3 0.102 0 2.1 0 2.2 0 0.0019
-"AL, Clay County" 11.2 0.093 11.9 0.08 0 3.6 0 2.1 0 0.0019
-"AL, Cleburne County" 8.8 0.092 11.2 0.083 0 2.1 0 3.6 0 0.0013
-"AL, Coffee County" 11.6 0.087 9.9 0.097 0 3.3 0 2 0 0.002
-"AL, Colbert County" 9.3 0.08 11.6 0.1 0 2 0 2.7 0 0.0011
-"AL, Conecuh County" 10.6 0.09 9.8 0.091 0 3.5 0 3.2 0 0.001
-"AL, Coosa County" 11.9 0.082 8.1 0.118 0 3.6 0 2.7 0 0.0015
-"AL, Covington County" 8.1 0.088 10 0.118 0 2.4 0 2.9 0 0.0011
-"AL, Crenshaw County" 11 0.083 9.7 0.096 0 2.7 0 3.5 0 0.0018
-"AL, Cullman County" 9.8 0.097 11 0.09 0 2.6 0 3.4 0 0.0014
-"AL, Dale County" 8.3 0.095 11.3 0.107 0 3.3 0 2 0 0.0018
-"AL, Dallas County" 9.7 0.109 10.5 0.09 0 4 0 3.9 0 0.002
-"AL, DeKalb County" 11.4 0.117 8.8 0.099 0 2.3 0 3.9 0 0.0013
-"AL, Elmore County" 9.7 0.113 9.5 0.117 0 3.8 0 3.3 0 0.001
-"AL, Escambia County" 11 0.097 8.9 0.105 0 2.5 0 2.1 0 0.002
-"AL, Etowah County" 8.9 0.09 9.2 0.091 0 2.8 0 3 0 0.0017
-"AL, Fayette County" 9.8 0.12 11.5 0.111 0 3.7 0 3 0 0.0017
-"AL, Franklin County" 10.9 0.097 11.8 0.091 0 2.6 0 2.4 0 0.0019
-"AL, Geneva County" 11.1 0.091 8.8 0.09 0 2.5 0 2.6 0 0.0019
-"AL, Greene County" 9.4 0.086 9.5 0.084 0 2.7 0 3.7 0 0.0011
-"AL, Hale County" 10.7 0.111 8.2 0.119 0 2.1 0 3 0 0.0019
-"AL, Henry County" 11.5 0.116 11.4 0.106 0 2.1 0 3.8 0 0.001
-"AL, Houston County" 11.1 0.106 8.8 0.104 0 4 0 3.4 0 0.0019
-"AL, Jackson County" 8 0.098 10.2 0.094 0 2.7 0 3.7 0 0.0017
-"AL, Jefferson County" 10.4 0.116 10.8 0.118 0 2.1 0 3.9 0 0.001
-"AL, Lamar County" 10.5 0.113 9.4 0.116 0 2.9 0 2.1 0 0.0012
-"AL, Lauderdale County" 9.9 0.095 11.6 0.081 0 2.5 0 2.9 0 0.0014
-"AL, Lawrence County" 11.6 0.117 9.7 0.088 0 3.1 0 3.9 0 0.0016
-"AL, Lee County" 10.5 0.102 8.3 0.101 0 2.1 0 3 0 0.0013
-"AL, Limestone County" 9.5 0.11 9 0.109 0 2.4 0 3.9 0 0.0012
-"AL, Lowndes County" 11.8 0.12 9 0.104 0 2.2 0 2.7 0 0.0018
-"AL, Macon County" 10.3 0.099 10.5 0.089 0 2.3 0 2.1 0 0.0017
-"AL, Madison County" 10.6 0.101 10 0.099 0 3 0 2.7 0 0.0019
-"AL, Marengo County" 8.4 0.115 9.8 0.092 0 3 0 2.3 0 0.0019
-"AL, Marion County" 9.2 0.092 8 0.108 0 3.4 0 2.2 0 0.0014
-"AL, Marshall County" 8.9 0.115 8.2 0.104 0 2.1 0 3.5 0 0.0011
-"AL, Mobile County" 11.7 0.098 9.3 0.091 0 2.6 0 3.7 0 0.0011
-"AL, Monroe County"
-"AL, Montgomery County"
-"AL, Morgan County"
-"AL, Perry County"
-"CA, Contra Costa County"
-"CA, Del Norte County"
-"CA, El Dorado County"
-"CA, Fresno County"
diff --git a/resources/data/simple_rates/README.md b/resources/data/simple_rates/README.md
new file mode 100644
index 0000000000..5cae5562b4
--- /dev/null
+++ b/resources/data/simple_rates/README.md
@@ -0,0 +1,6 @@
+In the YML file's "simple_filepath" field for utility bill scenario definitions, enter a relative file path to a TSV lookup file (e.g., "data/simple_rates/State.tsv") containing user-defined values corresponding to arguments for fixed costs, marginal rates, and PV.
+The first column of the TSV lookup file contains the name of a chosen parameter for which sets of argument values are assigned according to its options.
+Any blank fields, or missing options for a parameter not specified in the TSV lookup file, will be defaulted.
+
+See the Simple section of OpenStudio-HPXML's documentation for [Electricity Rates](https://openstudio-hpxml.readthedocs.io/en/latest/workflow_inputs.html#electricity-rates), and [Fuel Rates](https://openstudio-hpxml.readthedocs.io/en/latest/workflow_inputs.html#fuel-rates), for more information about arguments for fixed charges, marginal rates, and PV.
+Refer to BuildStockBatch's documentation for [Residential HPXML Workflow Generator](https://buildstockbatch.readthedocs.io/en/stable/workflow_generators/residential_hpxml.html) for more information about YML file arguments.
diff --git a/resources/data/simple_rates/State.tsv b/resources/data/simple_rates/State.tsv
index 605ef04568..24d4111563 100644
--- a/resources/data/simple_rates/State.tsv
+++ b/resources/data/simple_rates/State.tsv
@@ -1,50 +1,50 @@
-State electricity_fixed_charge electricity_marginal_rate natural_gas_fixed_charge natural_gas_marginal_rate propane_fixed_charge propane_marginal_rate fuel_oil_fixed_charge fuel_oil_marginal_rate wood_fixed_charge wood_marginal_rate
-AL 8 0.089 8.1 0.109 0 2.3 0 2.3 0 0.0163
-AR 9 0.115 8.3 0.104 0 2 0 3.6 0 0.0105
-AZ 8 0.105 9.1 0.116 0 2.7 0 2.1 0 0.0154
-CA 8.8 0.083 11.7 0.091 0 2.8 0 3.8 0 0.0195
-CO 10 0.102 8.1 0.093 0 2 0 2.7 0 0.0111
-CT 9 0.08 9.8 0.092 0 2.9 0 2.7 0 0.0111
-DC 10.1 0.08 8.3 0.081 0 2.5 0 2 0 0.0186
-DE 11.4 0.115 10.1 0.108 0 3.1 0 2 0 0.0185
-FL 10.1 0.097 9 0.116 0 3.1 0 2.3 0 0.0147
-GA 9.6 0.117 11.9 0.098 0 2 0 2.9 0 0.0148
-IA 10 0.088 8.3 0.118 0 3.5 0 3 0 0.0135
-ID 11.5 0.092 10.4 0.106 0 3.4 0 2.9 0 0.0113
-IL 9.9 0.087 8.7 0.091 0 3.4 0 3.4 0 0.0186
-IN 10.2 0.105 10.2 0.103 0 2.2 0 4 0 0.0177
-KS 9.8 0.111 8.4 0.099 0 3.3 0 3.5 0 0.0173
-KY 11.3 0.107 11.7 0.09 0 3.3 0 2.5 0 0.0112
-LA 10.4 0.115 11.9 0.083 0 4 0 2 0 0.0157
-MA 10.4 0.107 11.3 0.11 0 2.4 0 2.1 0 0.0111
-MD 10 0.105 8.4 0.114 0 3.6 0 2.7 0 0.0194
-ME 9.5 0.106 11.8 0.101 0 3.6 0 3.4 0 0.0187
-MI 9.6 0.097 9.8 0.093 0 2.9 0 3.4 0 0.0109
-MN 11.3 0.081 9.7 0.086 0 2.1 0 2.9 0 0.0179
-MO 9.8 0.113 11.5 0.111 0 3.6 0 3.6 0 0.0182
-MS 8.4 0.101 11 0.103 0 2.5 0 2.9 0 0.0125
-MT 9.6 0.095 9.6 0.096 0 3.3 0 2.8 0 0.0168
-NC 10.4 0.093 10.1 0.093 0 2.3 0 2.8 0 0.0195
-ND 8.6 0.096 9.3 0.097 0 2.4 0 3.9 0 0.0147
-NE 10.1 0.108 11.2 0.106 0 2.5 0 4 0 0.0182
-NH 9 0.084 8.8 0.11 0 3.1 0 2.7 0 0.0151
-NJ 11 0.087 8.2 0.12 0 4 0 2.9 0 0.0167
-NM 8.8 0.084 9.4 0.088 0 3.4 0 2.6 0 0.0103
-NV 11.5 0.097 11.7 0.115 0 3.4 0 3.4 0 0.0129
-NY 8.8 0.094 9.9 0.094 0 3.9 0 3.5 0 0.0128
-OH 10 0.082 8.6 0.11 0 3.6 0 3 0 0.0137
-OK 9.8 0.088 10.7 0.112 0 2.7 0 2.3 0 0.0172
-OR 10.8 0.088 8.3 0.12 0 3.1 0 2.7 0 0.0181
-PA 9.5 0.12 9.1 0.118 0 2.1 0 3.2 0 0.0124
-RI 10.2 0.085 10.4 0.088 0 2.5 0 3.9 0 0.0121
-SC 11.8 0.08 9.8 0.095 0 2.3 0 2.6 0 0.0193
-SD 11.8 0.091 9.6 0.098 0 2.2 0 4 0 0.0135
-TN 9.5 0.093 9.2 0.084 0 4 0 2.4 0 0.0176
-TX 8 0.089 9 0.094 0 3.9 0 3.9 0 0.012
-UT 11.4 0.106 9.8 0.109 0 2.2 0 3.1 0 0.0175
-VA 8.9 0.1 8.4 0.086 0 2.4 0 3.1 0 0.018
-VT 8.9 0.088 11.5 0.105 0 2.9 0 3.9 0 0.0124
-WA 11.8 0.097 8.3 0.081 0 2.6 0 2.7 0 0.0187
-WI 11.6 0.109 11 0.113 0 2.1 0 2.1 0 0.0105
-WV 9.3 0.09 11.6 0.087 0 2.5 0 3.8 0 0.0162
-WY 11 0.114 11.4 0.088 0 3.9 0 3.2 0 0.0152
+State elec_fixed_charge elec_marginal_rate natural_gas_fixed_charge natural_gas_marginal_rate propane_fixed_charge propane_marginal_rate fuel_oil_fixed_charge fuel_oil_marginal_rate wood_fixed_charge wood_marginal_rate pv_compensation_type pv_net_metering_annual_excess_sellback_rate_type pv_net_metering_annual_excess_sellback_rate pv_feed_in_tariff_rates pv_monthly_grid_connection_fee_units pv_monthly_grid_connection_fee
+AL 8 0.089 8.1 0.109 0 2.3 0 2.3 0 0.0163 NetMetering User-Specified 0.035 $/kW 2.5
+AR 9 0.115 8.3 0.104 0 2 0 3.6 0 0.0105 NetMetering Retail Electricity Cost $/kW 2.5
+AZ 8 0.105 9.1 0.116 0 2.7 0 2.1 0 0.0154 FeedInTariff 0.13 $/kW 2.5
+CA 8.8 0.083 11.7 0.091 0 2.8 0 3.8 0 0.0195 FeedInTariff 0.13 $ 7.5
+CO 10 0.102 8.1 0.093 0 2 0 2.7 0 0.0111 NetMetering User-Specified 0.035 $/kW 2.5
+CT 9 0.08 9.8 0.092 0 2.9 0 2.7 0 0.0111 NetMetering Retail Electricity Cost $/kW 2.5
+DC 10.1 0.08 8.3 0.081 0 2.5 0 2 0 0.0186 FeedInTariff 0.13 $/kW 2.5
+DE 11.4 0.115 10.1 0.108 0 3.1 0 2 0 0.0185 FeedInTariff 0.13 $ 7.5
+FL 10.1 0.097 9 0.116 0 3.1 0 2.3 0 0.0147 NetMetering User-Specified 0.035 $/kW 2.5
+GA 9.6 0.117 11.9 0.098 0 2 0 2.9 0 0.0148 NetMetering Retail Electricity Cost $/kW 2.5
+IA 10 0.088 8.3 0.118 0 3.5 0 3 0 0.0135 FeedInTariff 0.13 $/kW 2.5
+ID 11.5 0.092 10.4 0.106 0 3.4 0 2.9 0 0.0113 FeedInTariff 0.13 $ 7.5
+IL 9.9 0.087 8.7 0.091 0 3.4 0 3.4 0 0.0186 NetMetering User-Specified 0.035 $/kW 2.5
+IN 10.2 0.105 10.2 0.103 0 2.2 0 4 0 0.0177 NetMetering Retail Electricity Cost $/kW 2.5
+KS 9.8 0.111 8.4 0.099 0 3.3 0 3.5 0 0.0173 FeedInTariff 0.13 $/kW 2.5
+KY 11.3 0.107 11.7 0.09 0 3.3 0 2.5 0 0.0112 FeedInTariff 0.13 $ 7.5
+LA 10.4 0.115 11.9 0.083 0 4 0 2 0 0.0157 NetMetering User-Specified 0.035 $/kW 2.5
+MA 10.4 0.107 11.3 0.11 0 2.4 0 2.1 0 0.0111 NetMetering Retail Electricity Cost $/kW 2.5
+MD 10 0.105 8.4 0.114 0 3.6 0 2.7 0 0.0194 FeedInTariff 0.13 $/kW 2.5
+ME 9.5 0.106 11.8 0.101 0 3.6 0 3.4 0 0.0187 FeedInTariff 0.13 $ 7.5
+MI 9.6 0.097 9.8 0.093 0 2.9 0 3.4 0 0.0109 NetMetering User-Specified 0.035 $/kW 2.5
+MN 11.3 0.081 9.7 0.086 0 2.1 0 2.9 0 0.0179 NetMetering Retail Electricity Cost $/kW 2.5
+MO 9.8 0.113 11.5 0.111 0 3.6 0 3.6 0 0.0182 FeedInTariff 0.13 $/kW 2.5
+MS 8.4 0.101 11 0.103 0 2.5 0 2.9 0 0.0125 FeedInTariff 0.13 $ 7.5
+MT 9.6 0.095 9.6 0.096 0 3.3 0 2.8 0 0.0168 NetMetering User-Specified 0.035 $/kW 2.5
+NC 10.4 0.093 10.1 0.093 0 2.3 0 2.8 0 0.0195 NetMetering Retail Electricity Cost $/kW 2.5
+ND 8.6 0.096 9.3 0.097 0 2.4 0 3.9 0 0.0147 FeedInTariff 0.13 $/kW 2.5
+NE 10.1 0.108 11.2 0.106 0 2.5 0 4 0 0.0182 FeedInTariff 0.13 $ 7.5
+NH 9 0.084 8.8 0.11 0 3.1 0 2.7 0 0.0151 NetMetering User-Specified 0.035 $/kW 2.5
+NJ 11 0.087 8.2 0.12 0 4 0 2.9 0 0.0167 NetMetering Retail Electricity Cost $/kW 2.5
+NM 8.8 0.084 9.4 0.088 0 3.4 0 2.6 0 0.0103 FeedInTariff 0.13 $/kW 2.5
+NV 11.5 0.097 11.7 0.115 0 3.4 0 3.4 0 0.0129 FeedInTariff 0.13 $ 7.5
+NY 8.8 0.094 9.9 0.094 0 3.9 0 3.5 0 0.0128 NetMetering User-Specified 0.035 $/kW 2.5
+OH 10 0.082 8.6 0.11 0 3.6 0 3 0 0.0137 NetMetering Retail Electricity Cost $/kW 2.5
+OK 9.8 0.088 10.7 0.112 0 2.7 0 2.3 0 0.0172 FeedInTariff 0.13 $/kW 2.5
+OR 10.8 0.088 8.3 0.12 0 3.1 0 2.7 0 0.0181 FeedInTariff 0.13 $ 7.5
+PA 9.5 0.12 9.1 0.118 0 2.1 0 3.2 0 0.0124 NetMetering User-Specified 0.035 $/kW 2.5
+RI 10.2 0.085 10.4 0.088 0 2.5 0 3.9 0 0.0121 NetMetering Retail Electricity Cost $/kW 2.5
+SC 11.8 0.08 9.8 0.095 0 2.3 0 2.6 0 0.0193 FeedInTariff 0.13 $/kW 2.5
+SD 11.8 0.091 9.6 0.098 0 2.2 0 4 0 0.0135 FeedInTariff 0.13 $ 7.5
+TN 9.5 0.093 9.2 0.084 0 4 0 2.4 0 0.0176 NetMetering User-Specified 0.035 $/kW 2.5
+TX 8 0.089 9 0.094 0 3.9 0 3.9 0 0.012 NetMetering Retail Electricity Cost $/kW 2.5
+UT 11.4 0.106 9.8 0.109 0 2.2 0 3.1 0 0.0175 FeedInTariff 0.13 $/kW 2.5
+VA 8.9 0.1 8.4 0.086 0 2.4 0 3.1 0 0.018 FeedInTariff 0.13 $ 7.5
+VT 8.9 0.088 11.5 0.105 0 2.9 0 3.9 0 0.0124 NetMetering User-Specified 0.035 $/kW 2.5
+WA 11.8 0.097 8.3 0.081 0 2.6 0 2.7 0 0.0187 NetMetering Retail Electricity Cost $/kW 2.5
+WI 11.6 0.109 11 0.113 0 2.1 0 2.1 0 0.0105 FeedInTariff 0.13 $/kW 2.5
+WV 9.3 0.09 11.6 0.087 0 2.5 0 3.8 0 0.0162 FeedInTariff 0.13 $ 7.5
+WY 11 0.114 11.4 0.088 0 3.9 0 3.2 0 0.0152 NetMetering User-Specified 0.035 $/kW 2.5
diff --git a/test/base_results/baseline/annual/results_characteristics.csv b/test/base_results/baseline/annual/results_characteristics.csv
index 632140f0f3..147f8a7e19 100644
--- a/test/base_results/baseline/annual/results_characteristics.csv
+++ b/test/base_results/baseline/annual/results_characteristics.csv
@@ -1,351 +1,351 @@
-OSW,build_existing_model.ahs_region,build_existing_model.aiannh_area,build_existing_model.area_median_income,build_existing_model.ashrae_iecc_climate_zone_2004,build_existing_model.ashrae_iecc_climate_zone_2004_2_a_split,build_existing_model.bathroom_spot_vent_hour,build_existing_model.battery,build_existing_model.bedrooms,build_existing_model.building_america_climate_zone,build_existing_model.cec_climate_zone,build_existing_model.ceiling_fan,build_existing_model.census_division,build_existing_model.census_division_recs,build_existing_model.census_region,build_existing_model.city,build_existing_model.clothes_dryer,build_existing_model.clothes_dryer_usage_level,build_existing_model.clothes_washer,build_existing_model.clothes_washer_presence,build_existing_model.clothes_washer_usage_level,build_existing_model.cooking_range,build_existing_model.cooking_range_usage_level,build_existing_model.cooling_setpoint,build_existing_model.cooling_setpoint_has_offset,build_existing_model.cooling_setpoint_offset_magnitude,build_existing_model.cooling_setpoint_offset_period,build_existing_model.corridor,build_existing_model.county,build_existing_model.county_and_puma,build_existing_model.dehumidifier,build_existing_model.dishwasher,build_existing_model.dishwasher_usage_level,build_existing_model.door_area,build_existing_model.doors,build_existing_model.duct_leakage_and_insulation,build_existing_model.duct_location,build_existing_model.eaves,build_existing_model.electric_vehicle,build_existing_model.emissions_electricity_folders,build_existing_model.emissions_electricity_units,build_existing_model.emissions_electricity_values_or_filepaths,build_existing_model.emissions_fossil_fuel_units,build_existing_model.emissions_fuel_oil_values,build_existing_model.emissions_natural_gas_values,build_existing_model.emissions_propane_values,build_existing_model.emissions_scenario_names,build_existing_model.emissions_types,build_existing_model.emissions_wood_values,build_existing_model.energystar_climate_zone_2023,build_existing_model.federal_poverty_level,build_existing_model.generation_and_emissions_assessment_region,build_existing_model.geometry_attic_type,build_existing_model.geometry_building_horizontal_location_mf,build_existing_model.geometry_building_horizontal_location_sfa,build_existing_model.geometry_building_level_mf,build_existing_model.geometry_building_number_units_mf,build_existing_model.geometry_building_number_units_sfa,build_existing_model.geometry_building_type_acs,build_existing_model.geometry_building_type_height,build_existing_model.geometry_building_type_recs,build_existing_model.geometry_floor_area,build_existing_model.geometry_floor_area_bin,build_existing_model.geometry_foundation_type,build_existing_model.geometry_garage,build_existing_model.geometry_space_combination,build_existing_model.geometry_stories,build_existing_model.geometry_stories_low_rise,build_existing_model.geometry_story_bin,build_existing_model.geometry_wall_exterior_finish,build_existing_model.geometry_wall_type,build_existing_model.has_pv,build_existing_model.heating_fuel,build_existing_model.heating_setpoint,build_existing_model.heating_setpoint_has_offset,build_existing_model.heating_setpoint_offset_magnitude,build_existing_model.heating_setpoint_offset_period,build_existing_model.holiday_lighting,build_existing_model.hot_water_distribution,build_existing_model.hot_water_fixtures,build_existing_model.household_has_tribal_persons,build_existing_model.hvac_cooling_efficiency,build_existing_model.hvac_cooling_partial_space_conditioning,build_existing_model.hvac_cooling_type,build_existing_model.hvac_has_ducts,build_existing_model.hvac_has_shared_system,build_existing_model.hvac_has_zonal_electric_heating,build_existing_model.hvac_heating_efficiency,build_existing_model.hvac_heating_type,build_existing_model.hvac_heating_type_and_fuel,build_existing_model.hvac_secondary_heating_efficiency,build_existing_model.hvac_secondary_heating_fuel,build_existing_model.hvac_secondary_heating_partial_space_conditioning,build_existing_model.hvac_shared_efficiencies,build_existing_model.hvac_system_is_faulted,build_existing_model.hvac_system_single_speed_ac_airflow,build_existing_model.hvac_system_single_speed_ac_charge,build_existing_model.hvac_system_single_speed_ashp_airflow,build_existing_model.hvac_system_single_speed_ashp_charge,build_existing_model.income,build_existing_model.income_recs_2015,build_existing_model.income_recs_2020,build_existing_model.infiltration,build_existing_model.insulation_ceiling,build_existing_model.insulation_floor,build_existing_model.insulation_foundation_wall,build_existing_model.insulation_rim_joist,build_existing_model.insulation_roof,build_existing_model.insulation_slab,build_existing_model.insulation_wall,build_existing_model.interior_shading,build_existing_model.iso_rto_region,build_existing_model.lighting,build_existing_model.lighting_interior_use,build_existing_model.lighting_other_use,build_existing_model.location_region,build_existing_model.mechanical_ventilation,build_existing_model.misc_extra_refrigerator,build_existing_model.misc_freezer,build_existing_model.misc_gas_fireplace,build_existing_model.misc_gas_grill,build_existing_model.misc_gas_lighting,build_existing_model.misc_hot_tub_spa,build_existing_model.misc_pool,build_existing_model.misc_pool_heater,build_existing_model.misc_pool_pump,build_existing_model.misc_well_pump,build_existing_model.natural_ventilation,build_existing_model.neighbors,build_existing_model.occupants,build_existing_model.orientation,build_existing_model.overhangs,build_existing_model.plug_load_diversity,build_existing_model.plug_loads,build_existing_model.puma,build_existing_model.puma_metro_status,build_existing_model.pv_orientation,build_existing_model.pv_system_size,build_existing_model.radiant_barrier,build_existing_model.range_spot_vent_hour,build_existing_model.reeds_balancing_area,build_existing_model.refrigerator,build_existing_model.refrigerator_usage_level,build_existing_model.roof_material,build_existing_model.sample_weight,build_existing_model.simulation_control_run_period_begin_day_of_month,build_existing_model.simulation_control_run_period_begin_month,build_existing_model.simulation_control_run_period_calendar_year,build_existing_model.simulation_control_run_period_end_day_of_month,build_existing_model.simulation_control_run_period_end_month,build_existing_model.simulation_control_timestep,build_existing_model.solar_hot_water,build_existing_model.state,build_existing_model.tenure,build_existing_model.units_represented,build_existing_model.usage_level,build_existing_model.utility_bill_electricity_fixed_charges,build_existing_model.utility_bill_electricity_marginal_rates,build_existing_model.utility_bill_fuel_oil_fixed_charges,build_existing_model.utility_bill_fuel_oil_marginal_rates,build_existing_model.utility_bill_natural_gas_fixed_charges,build_existing_model.utility_bill_natural_gas_marginal_rates,build_existing_model.utility_bill_propane_fixed_charges,build_existing_model.utility_bill_propane_marginal_rates,build_existing_model.utility_bill_pv_compensation_types,build_existing_model.utility_bill_pv_feed_in_tariff_rates,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,build_existing_model.utility_bill_scenario_names,build_existing_model.utility_bill_simple_filepaths,build_existing_model.utility_bill_wood_fixed_charges,build_existing_model.utility_bill_wood_marginal_rates,build_existing_model.vacancy_status,build_existing_model.vintage,build_existing_model.vintage_acs,build_existing_model.water_heater_efficiency,build_existing_model.water_heater_fuel,build_existing_model.water_heater_in_unit,build_existing_model.water_heater_location,build_existing_model.weather_file_city,build_existing_model.weather_file_latitude,build_existing_model.weather_file_longitude,build_existing_model.window_areas,build_existing_model.windows
-project_national-0001.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,120-150%,4A,4A,Hour23,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Electric Resistance,100% Usage,70F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"NY, Queens County","G3600810, G36004101",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Bottom,43,None,20 to 49 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",5,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,North,None,100%,89%,"NY, 04101","In metro area, principal city",None,None,None,Hour16,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York Laguardia Arpt,40.78,-73.88,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0002.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour20,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,"FL, Tampa",Electric,100% Usage,EnergyStar,Yes,100% Usage,Propane,100% Usage,78F,No,0F,None,Not Applicable,"FL, Hillsborough County","G1200570, G12005702",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"FL, 05702","In metro area, not/partially in principal city",None,None,No,Hour19,101,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Tampa International Ap,27.97,-82.53,F18 B18 L18 R18,"Single, Clear, Metal"
-project_national-0003.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour19,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"MI, Muskegon County","G2601210, G26000700",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,85%,"MI, 00700","In metro area, not/partially in principal city",None,None,No,Hour18,103,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Tankless,Natural Gas,Yes,Unheated Basement,Muskegon County Arpt,43.17,-86.23,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0004.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour22,None,4,Marine,6,Standard Efficiency,Pacific,Pacific,West,"CA, Santa Barbara",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"CA, Santa Barbara County","G0600830, G06008303",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,94%,"CA, 08303","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,Yes,Garage,Santa Barbara Municipal Ap,34.43,-119.85,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0005.osw,Non-CBSA West North Central,No,150%+,5A,5A,Hour1,None,4,Cold,None,None,West North Central,West North Central,Midwest,"NE, Omaha",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NE, Douglas County","G3100550, G31000901",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Heated Basement,3 Car,"Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-30,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,95%,"NE, 00901","In metro area, not/partially in principal city",None,None,No,Hour7,41,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NE,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Omaha Wsfo,41.37,-96.02,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0006.osw,Non-CBSA West North Central,No,120-150%,7A,7A,Hour5,None,4,Very Cold,None,None,West North Central,West North Central,Midwest,"ND, Fargo",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"ND, Cass County","G3800170, G38000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,95%,"ND, 00500","In metro area, not/partially in principal city",None,None,No,Hour20,37,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,ND,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Fargo Hector International Ap,46.93,-96.82,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0007.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,5A,5A,Hour7,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,120% Usage,None,None,120% Usage,Gas,120% Usage,72F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003502",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,2,East,None,200%,89%,"IL, 03502","In metro area, principal city",None,None,None,Hour11,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Premium,Electricity,No,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_national-0008.osw,Non-CBSA West South Central,No,150%+,2A,"2A - TX, LA",Hour6,None,3,Hot-Humid,None,None,West South Central,West South Central,South,"TX, College Station",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"TX, Brazos County","G4800410, G48003602",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",ERCOT,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,113%,"TX, 03602","In metro area, not/partially in principal city",None,None,No,Hour8,64,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TX,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Outside,College Station-Easterwood AP,30.583,-96.367,F6 B6 L6 R6,"Single, Clear, Metal"
-project_national-0009.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour0,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"NC, Wilmington",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NC, New Hanover County","G3701290, G37004700",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,106%,"NC, 04700","In metro area, not/partially in principal city",None,None,No,Hour9,98,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Living Space,Wilmington International Arpt,34.27,-77.9,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0010.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,0-30%,5A,5A,Hour19,None,1,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,120% Usage,None,None,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003501",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCWc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",6,4+,<8,None,Brick,No,Natural Gas,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,No,None,No,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,West,None,200%,89%,"IL, 03501","In metro area, principal city",None,None,None,Hour18,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0011.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour3,None,2,Hot-Dry,11,Standard Efficiency,Pacific,Pacific,West,"CA, Redding",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,Yes,5F,Night Setback +1h,Not Applicable,"CA, Shasta County","G0600890, G06008900",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,94%,"CA, 08900","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Redding Municipal Arpt,40.52,-122.32,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
-project_national-0012.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,5,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"VA, Henrico County","G5100870, G51051225",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,East,None,50%,106%,"VA, 51225","In metro area, not/partially in principal city",None,None,No,Hour4,99,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Richmond International Ap,37.52,-77.32,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0013.osw,Non-CBSA New England,No,Not Available,5A,5A,Hour22,None,3,Cold,None,None,New England,New England,Northeast,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"MA, Barnstable County","G2500010, G25004800",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,Not Available,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,55F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,Not Available,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,Not Available,Not Available,Not Available,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,0,South,None,100%,99%,"MA, 04800",Not/partially in metro area,None,None,No,Hour21,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Not Available,1,Medium,,,,,,,,,,,,,,,Bills,,,,Vacant,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Barnstable Muni Boa,41.67,-70.28,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0014.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour5,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,In another census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"MA, Essex County","G2500090, G25000703",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,6F,Night,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,99%,"MA, 00703","In metro area, not/partially in principal city",None,None,No,Hour18,131,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Beverly Muni,42.58,-70.92,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0015.osw,Non-CBSA West South Central,Yes,150%+,3A,3A,Hour13,None,3,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Tulsa",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"OK, Tulsa County","G4001430, G40001201",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-7,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,113%,"OK, 01201","In metro area, principal city",None,None,No,Hour17,51,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Tulsa International Airport,36.2,-95.88,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0016.osw,Non-CBSA New England,No,150%+,5A,5A,Hour17,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,"CT, Stamford",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"CT, Fairfield County","G0900010, G09000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,62F,Yes,6F,Day and Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,99%,"CT, 00102","In metro area, not/partially in principal city",None,None,No,Hour1,132,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Danbury Municipal,41.37,-73.48,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0017.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,5A,5A,Hour17,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003524",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Not Applicable,None,Top,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southeast,None,100%,96%,"IL, 03524","In metro area, principal city",None,None,None,Hour13,80,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0018.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour8,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"GA, Cobb County","G1300670, G13003004",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Finished Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,106%,"GA, 03004","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Marietta Dobbins Afb,33.92,-84.52,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0019.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour18,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,60F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003810",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",15,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",60% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southeast,None,50%,89%,"NY, 03810","In metro area, principal city",None,None,None,Hour12,127,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Metal"
-project_national-0020.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour4,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback +3h,Double-Loaded Interior,"NY, New York County","G3600610, G36003809",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",3,3,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,West,None,100%,89%,"NY, 03809","In metro area, principal city",None,None,None,Hour16,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
-project_national-0021.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour6,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Lakeland",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"FL, Polk County","G1201050, G12010501",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 10501","In metro area, not/partially in principal city",None,None,No,Hour1,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Lakeland Linder Rgn,27.98,-82.02,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0022.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour4,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Not Applicable,"NY, Albany County","G3600010, G36002002",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,101%,"NY, 02002","In metro area, not/partially in principal city",None,None,No,Hour20,127,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Unheated Basement,Albany County Ap,42.75,-73.8,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0023.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour15,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Detroit",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"MI, Wayne County","G2601630, G26003211",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,85%,"MI, 03211","In metro area, principal city",None,None,No,Hour5,103,EF 15.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0024.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,80-100%,4A,4A,Hour23,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"NY, Queens County","G3600810, G36004112",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,40 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,101%,"NY, 04112","In metro area, principal city",None,None,No,Hour16,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,New York Laguardia Arpt,40.78,-73.88,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0025.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,Yes,5F,Night Setback +3h,Not Applicable,"NC, Davidson County","G3700570, G37003500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,6 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,100%,106%,"NC, 03500","In metro area, not/partially in principal city",None,None,No,Hour21,97,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Crawlspace,Charlotte Douglas Intl Arpt,35.22,-80.95,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0026.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour23,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,72F,Yes,5F,Night Setback +5h,Not Applicable,"OR, Clackamas County","G4100050, G41001318",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,94%,"OR, 01318","In metro area, not/partially in principal city",None,None,No,Hour7,5,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Aurora State,45.25,-122.77,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0027.osw,Non-CBSA Mountain,No,100-120%,5B,5B,Hour5,None,3,Cold,None,None,Mountain,Mountain North,West,"CO, Pueblo",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"CO, Pueblo County","G0801010, G08000700",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RMPAc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,91%,"CO, 00700","In metro area, not/partially in principal city",None,None,No,Hour14,34,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Pueblo Memorial Ap,38.28,-104.5,F6 B6 L6 R6,"Single, Clear, Non-metal"
-project_national-0028.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour20,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Gas,100% Usage,72F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003805",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",12,3,West,None,100%,89%,"NY, 03805","In metro area, principal city",None,None,None,Hour17,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0029.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,100-120%,4A,4A,Hour18,None,1,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"VA, Alexandria",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback +4h,Double-Loaded Interior,"VA, Alexandria city","G5105100, G51051255",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,Middle,None,Middle,183,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Brick, Medium/Dark",Steel Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",None,1,West,None,100%,106%,"VA, 51255","In metro area, principal city",None,None,None,Hour17,99,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,No,None,Washington Dc Reagan Ap,38.87,-77.03,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0030.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Not Applicable,"PA, Dauphin County","G4200430, G42002401",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Fuel Oil,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,101%,"PA, 02401","In metro area, not/partially in principal city",None,None,No,Hour8,122,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Harrisburg Capital City Arpt,40.22,-76.85,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0031.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour6,None,2,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"NH, Rockingham County","G3300150, G33001000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,68F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,99%,"NH, 01000","In metro area, not/partially in principal city",None,None,No,Hour15,130,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NH,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Fuel Oil Standard,Fuel Oil,Yes,Heated Basement,Lawrence Muni,42.72,-71.12,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0032.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour18,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,2F,Night Setback +2h,Not Applicable,"FL, Sarasota County","G1201150, G12011502",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 11502","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Sarasota Bradenton,27.38,-82.55,F9 B9 L9 R9,"Single, Clear, Metal"
-project_national-0033.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour23,None,3,Hot-Dry,9,None,Pacific,Pacific,West,"CA, Glendale",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003719",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,Yes,12F,Night,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,94%,"CA, 03719","In metro area, principal city",None,None,No,Hour17,10,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0034.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour9,None,3,Marine,4,Standard Efficiency,Pacific,Pacific,West,"CA, Mountain View",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,5F,Night Setback +5h,Not Applicable,"CA, Santa Clara County","G0600850, G06008501",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,12F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,200%,94%,"CA, 08501","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Premium,Natural Gas,Yes,Living Space,San Jose Intl Ap,37.37,-121.93,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0035.osw,"CBSA Seattle-Tacoma-Bellevue, WA",No,150%+,4C,4C,Hour21,None,3,Marine,None,None,Pacific,Pacific,West,"WA, Seattle",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"WA, King County","G5300330, G53011601",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,200%,94%,"WA, 11601","In metro area, principal city",None,None,No,Hour12,1,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Renton Muni,47.48,-122.22,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0036.osw,Non-CBSA South Atlantic,No,120-150%,4A,4A,Hour23,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Norfolk",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"VA, Norfolk city","G5107100, G51051154",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"VA, 51154","In metro area, principal city",None,None,No,Hour15,99,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Norfolk Nas,36.95,-76.28,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0037.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"NY, Suffolk County","G3601030, G36003305",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,101%,"NY, 03305","In metro area, not/partially in principal city",None,None,No,Hour22,128,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Islip-Long Island MacArthur AP,40.79,-73.1,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_national-0038.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour23,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NY, Rensselaer County","G3600830, G36001900",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,60F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,50%,101%,"NY, 01900","In metro area, not/partially in principal city",None,None,No,Hour14,127,EF 19.9,95% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Albany County Ap,42.75,-73.8,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0039.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour1,None,4,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Springfield",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"IL, Sangamon County","G1701670, G17001300",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Finished Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 8",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 01300","In metro area, not/partially in principal city",None,None,No,Hour20,82,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Springfield Capital Ap,39.85,-89.68,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0040.osw,Non-CBSA Middle Atlantic,No,150%+,4A,4A,Hour6,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"PA, York County","G4201330, G42003601",None,None,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",1,1,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,101%,"PA, 03601","In metro area, not/partially in principal city",None,None,No,Hour7,122,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Harrisburg Capital City Arpt,40.22,-76.85,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0041.osw,Non-CBSA East North Central,No,120-150%,6A,6A,Hour5,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"WI, Outagamie County","G5500870, G55001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"WI, 01500","In metro area, not/partially in principal city",None,None,No,Hour18,76,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Appleton Outagamie,44.25,-88.52,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0042.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,150%+,3B,3B,Hour0,None,2,Hot-Dry,15,Standard Efficiency,Pacific,Pacific,West,"CA, Palm Springs",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"CA, Riverside County","G0600650, G06006502",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,Electricity,Has Pool,None,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,94%,"CA, 06502","In metro area, not/partially in principal city",None,None,No,Hour18,10,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,March Afb,33.9,-117.25,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0043.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,80-100%,1A,1A,Hour17,None,1,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Aventura",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Double-Loaded Interior,"FL, Miami-Dade County","G1200860, G12008604",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",5,4+,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,North,None,100%,106%,"FL, 08604","In metro area, not/partially in principal city",None,None,None,Hour16,102,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Miami Intl Ap,25.82,-80.3,F18 B18 L18 R18,"Single, Clear, Metal"
-project_national-0044.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,8,Standard Efficiency,Pacific,Pacific,West,"CA, Irvine",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"CA, Orange County","G0600590, G06005904",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,76F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southwest,None,100%,94%,"CA, 05904","In metro area, not/partially in principal city",None,None,No,Hour9,10,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Premium,Natural Gas,Yes,Living Space,Santa Ana John Wayne Ap,33.68,-117.87,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0045.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,150%+,4A,4A,Hour7,None,4,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,76F,No,0F,None,Not Applicable,"PA, Montgomery County","G4200910, G42003106",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR07,None,EF 17.6,None,None,None,None,None,Has Pool,Natural Gas,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,101%,"PA, 03106","In metro area, not/partially in principal city",None,None,No,Hour16,122,EF 15.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Willow Grove Nas,40.2,-75.15,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0046.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour11,None,3,Hot-Dry,14,Standard Efficiency,Pacific,Pacific,West,In another census Place,Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,78F,Yes,5F,Night Setback +5h,Not Applicable,"CA, Kern County","G0600290, G06002905",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,78F,Yes,12F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,94%,"CA, 02905","In metro area, not/partially in principal city",None,None,No,Hour19,10,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Bakersfield Meadows Field,35.43,-119.05,F6 B6 L6 R6,"Double, Clear, Metal, Air"
-project_national-0047.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour22,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double-Loaded Interior,"NY, Queens County","G3600810, G36004103",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,60F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,East,None,100%,89%,"NY, 04103","In metro area, principal city",None,None,None,Hour10,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,No,None,New York Laguardia Arpt,40.78,-73.88,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0048.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,100-120%,4A,4A,Hour4,None,3,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"NJ, Ocean County","G3400290, G34001201",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,101%,"NJ, 01201","In metro area, not/partially in principal city",None,None,No,Hour17,126,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Living Space,Belmar Asc,40.18,-74.07,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_national-0049.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"SC, Anderson County","G4500070, G45000200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"SC, 00200","In metro area, not/partially in principal city",None,None,No,Hour9,95,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Outside,Anderson Rgnl AP,34.5,-82.717,F18 B18 L18 R18,"Single, Clear, Metal"
-project_national-0050.osw,Non-CBSA West South Central,Yes,150%+,3A,3A,Hour22,None,2,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"OK, Tulsa",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"OK, Tulsa County","G4001430, G40001202",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,113%,"OK, 01202","In metro area, not/partially in principal city",None,None,No,Hour13,51,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Tulsa International Airport,36.2,-95.88,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0051.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour6,None,3,Cold,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Reno",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"NV, Washoe County","G3200310, G32000101",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southeast,None,200%,84%,"NV, 00101","In metro area, not/partially in principal city",None,None,No,Hour17,12,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Reno Tahoe International Ap,39.48,-119.77,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_national-0052.osw,Non-CBSA West South Central,No,100-120%,3A,3A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"AR, Little Rock",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"AR, Pulaski County","G0501190, G05001000",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,113%,"AR, 01000","In metro area, not/partially in principal city",None,None,No,Hour16,85,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Little Rock Adams Field,34.75,-92.23,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0053.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"MI, Berrien County","G2600210, G26002400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"MI, 02400","In metro area, not/partially in principal city",None,None,No,Hour15,104,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Benton Harbor Ross,42.13,-86.43,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0054.osw,"CBSA Seattle-Tacoma-Bellevue, WA",No,150%+,4C,4C,Hour20,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Seattle",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double-Loaded Interior,"WA, King County","G5300330, G53011603",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,Middle,None,Top,183,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",4,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR06,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,3,North,None,100%,91%,"WA, 11603","In metro area, principal city",None,None,None,Hour17,1,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WA,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,No,None,Renton Muni,47.48,-122.22,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0055.osw,Non-CBSA East North Central,No,0-30%,5A,5A,Hour20,None,2,Cold,None,None,East North Central,East North Central,Midwest,"OH, Cleveland",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,Yes,2F,Night Setback -2h,Not Applicable,"OH, Cuyahoga County","G3900350, G39000908",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,100-150%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,10000-14999,<20000,<20000,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northeast,None,200%,85%,"OH, 00908","In metro area, principal city",None,None,No,Hour18,111,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Burke Lakefront,41.52,-81.68,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0056.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,100-120%,4A,4A,Hour0,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"DC, Washington",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"DC, District of Columbia","G1100010, G11000104",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,Middle,None,None,8,Single-Family Attached,Single-Family Attached,Single-Family Attached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,West,None,100%,96%,"DC, 00104","In metro area, principal city",None,None,No,Hour16,123,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,DC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1940s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Washington Dc Reagan Ap,38.87,-77.03,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0057.osw,"CBSA San Francisco-Oakland-Hayward, CA",No,150%+,3C,3C,Hour6,None,2,Marine,3,Standard Efficiency,Pacific,Pacific,West,"CA, Oakland",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Double-Loaded Interior,"CA, Alameda County","G0600010, G06000102",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,Middle,None,Bottom,116,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",3,3,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",4,2,West,None,200%,91%,"CA, 00102","In metro area, not/partially in principal city",None,None,None,Hour19,9,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Living Space,Hayward Air Term,37.67,-122.12,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0058.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour17,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IN, Indianapolis City Balance",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,65F,No,0F,None,Not Applicable,"IN, Marion County","G1800970, G18002305",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,85%,"IN, 02305","In metro area, not/partially in principal city",None,None,No,Hour9,106,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Indianapolis Intl Ap,39.72,-86.27,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_national-0059.osw,Non-CBSA New England,No,150%+,6A,6A,Hour0,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"ME, Penobscot County","G2300190, G23000300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Concrete,No,Fuel Oil,65F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,99%,"ME, 00300","In metro area, not/partially in principal city",None,None,No,Hour6,134,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,ME,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Bangor Intl AP,44.8,-68.817,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0060.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour11,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Bellingham",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"WA, Whatcom County","G5300730, G53010100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,94%,"WA, 10100","In metro area, not/partially in principal city",None,None,No,Hour14,1,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Living Space,Bellingham Intl Ap,48.8,-122.53,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0061.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour12,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,76F,No,0F,None,Not Applicable,"CT, Middlesex County","G0900070, G09000700",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Concrete,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,40 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,99%,"CT, 00700","In metro area, not/partially in principal city",None,None,No,Hour14,132,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Hartford Brainard Fd,41.73,-72.65,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0062.osw,Non-CBSA West South Central,No,150%+,4A,4A,Hour21,None,5,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"AR, Benton County","G0500070, G05000100",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,65F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,6 ACH50,R-19,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,113%,"AR, 00100","In metro area, not/partially in principal city",None,None,No,Hour17,56,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Bentonville Awos,36.35,-94.22,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0063.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour11,None,5,Hot-Dry,None,None,Mountain,Mountain South,West,"AZ, Scottsdale",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback +4h,Not Applicable,"AZ, Maricopa County","G0400130, G04000110",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,200%,84%,"AZ, 00110","In metro area, not/partially in principal city",None,None,No,Hour18,28,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Garage,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F9 B9 L9 R9,"Single, Clear, Metal"
-project_national-0064.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour4,None,5,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Nashville-Davidson Metropolitan Government Balance",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,No,0F,None,Not Applicable,"TN, Davidson County","G4700370, G47002501",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,110%,"TN, 02501","In metro area, not/partially in principal city",None,None,No,Hour19,92,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Nashville International Ap,36.12,-86.68,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0065.osw,Non-CBSA West North Central,No,80-100%,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"IA, Davenport",Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Not Applicable,"IA, Scott County","G1901630, G19000900",None,None,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,10 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,95%,"IA, 00900","In metro area, not/partially in principal city",None,None,No,Hour16,70,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Moline Quad City Intl Ap,41.47,-90.52,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0066.osw,Non-CBSA East South Central,No,120-150%,3A,3A,Hour9,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"AL, Jefferson County","G0100730, G01001304",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,100%,110%,"AL, 01304","In metro area, not/partially in principal city",None,None,No,Hour3,89,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Garage,Birmingham Municipal Ap,33.57,-86.75,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0067.osw,Non-CBSA West South Central,No,150%+,3A,3A,Hour3,None,4,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Norman",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"OK, Cleveland County","G4000270, G40000900",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,10 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,113%,"OK, 00900","In metro area, not/partially in principal city",None,None,No,Hour23,50,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Oklahoma City Tinker Afb,35.42,-97.38,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0068.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour21,None,1,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"SC, Columbia",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"SC, Richland County","G4500790, G45000604",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,None,Brick,No,Electricity,67F,Yes,6F,Night,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"SC, 00604","In metro area, not/partially in principal city",None,None,No,Hour10,96,EF 19.9,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Premium,Electricity,Yes,Living Space,Columbia Metro Arpt,33.95,-81.12,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0069.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour3,None,5,Cold,None,None,Mountain,Mountain North,West,"CO, Denver",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,5F,Night Setback +2h,Not Applicable,"CO, Denver County","G0800310, G08000815",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,91%,"CO, 00815","In metro area, not/partially in principal city",None,None,No,Hour8,33,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Aurora Buckley Field Angb,39.72,-104.75,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0070.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour8,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,76F,No,0F,None,Not Applicable,"FL, Charlotte County","G1200150, G12001500",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,78F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,200%,106%,"FL, 01500","In metro area, not/partially in principal city",None,None,No,Hour11,101,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Living Space,Fort Myers Page Field,26.58,-81.87,F15 B15 L15 R15,"Single, Clear, Metal"
-project_national-0071.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour4,None,3,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Mesa",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +5h,Not Applicable,"AZ, Maricopa County","G0400130, G04000101",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,EF 19.9,"EF 12, National Average",None,None,None,None,Has Pool,Electricity,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,84%,"AZ, 00101","In metro area, not/partially in principal city",None,None,No,Hour16,28,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0072.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour18,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003801",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",6,4+,<8,None,Brick,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,50%,89%,"NY, 03801","In metro area, principal city",None,None,None,Hour11,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Premium,Fuel Oil,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_national-0073.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour22,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"FL, Okaloosa County","G1200910, G12009100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Electricity,72F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northeast,None,100%,106%,"FL, 09100","In metro area, not/partially in principal city",None,None,No,Hour20,91,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Garage,Valparaiso Elgin Afb,30.48,-86.52,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0074.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour15,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"NY, Monroe County","G3600550, G36000906",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,101%,"NY, 00906","In metro area, not/partially in principal city",None,None,No,Hour19,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Rochester Greater Rochester I,43.12,-77.68,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0075.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour8,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +1h,Not Applicable,"OH, Cuyahoga County","G3900350, G39000909",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,100%,85%,"OH, 00909","In metro area, not/partially in principal city",None,None,No,Hour11,111,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Burke Lakefront,41.52,-81.68,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_national-0076.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Newport Beach",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,Yes,2F,Night Setback -5h,Not Applicable,"CA, Orange County","G0600590, G06005903",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,50%,94%,"CA, 05903","In metro area, not/partially in principal city",None,None,No,Hour12,10,EF 19.9,95% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0077.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour6,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Farmington Hills",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,No,0F,None,Not Applicable,"MI, Oakland County","G2601250, G26002907",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,200%,85%,"MI, 02907","In metro area, not/partially in principal city",None,None,No,Hour10,103,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Oakland Co Intl,42.67,-83.42,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0078.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour20,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Not Applicable,"NC, Johnston County","G3701010, G37001100",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,7 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northeast,None,200%,106%,"NC, 01100","In metro area, not/partially in principal city",None,None,No,Hour17,98,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Goldsboro Seymour Johnson Afb,35.35,-77.97,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0079.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour2,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"MD, Bethesda",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"MD, Montgomery County","G2400310, G24001004",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"MD, 01004","In metro area, not/partially in principal city",None,None,No,Hour8,123,EF 17.6,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,MD,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Washington Dc Reagan Ap,38.87,-77.03,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0080.osw,Non-CBSA Mountain,No,150%+,6B,6B,Hour7,None,1,Cold,None,Standard Efficiency,Mountain,Mountain North,West,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"MT, Flathead County","G3000290, G30000100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,91%,"MT, 00100",Not/partially in metro area,None,None,No,Hour17,17,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MT,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Living Space,Kalispell Glacier Pk IntL Ar,48.32,-114.25,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0081.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour2,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003420",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,200%,85%,"IL, 03420","In metro area, not/partially in principal city",None,None,No,Hour17,80,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0082.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour15,None,3,Cold,None,None,East North Central,East North Central,Midwest,"WI, Janesville",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"WI, Rock County","G5501050, G55002400",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,85%,"WI, 02400","In metro area, not/partially in principal city",None,None,No,Hour13,78,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Janesville Rock Co,42.62,-89.03,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_national-0083.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour8,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"SC, Horry County","G4500510, G45001102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,7 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,106%,"SC, 01102","In metro area, not/partially in principal city",None,None,No,Hour21,96,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Myrtle Beach Afb,33.68,-78.93,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0084.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"OH, Youngstown",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,9F,Night Setback -4h,Not Applicable,"OH, Mahoning County","G3900990, G39001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,85%,"OH, 01500","In metro area, not/partially in principal city",None,None,No,Hour7,111,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Youngstown Regional Airport,41.25,-80.67,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0085.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour5,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"AL, Shelby County","G0101170, G01001200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,110%,"AL, 01200","In metro area, not/partially in principal city",None,None,No,Hour15,89,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Birmingham Municipal Ap,33.57,-86.75,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0086.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour18,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"OH, Dayton",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setup +1h,Not Applicable,"OH, Montgomery County","G3901130, G39004603",None,None,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,85%,"OH, 04603","In metro area, not/partially in principal city",None,None,No,Hour19,113,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Dayton International Airport,39.9,-84.22,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0087.osw,Non-CBSA East North Central,No,100-120%,5A,5A,Hour21,None,2,Cold,None,None,East North Central,East North Central,Midwest,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Night Setup +5h,Not Applicable,"IN, Elkhart County","G1800390, G18000500",None,None,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,12F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,50 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,85%,"IN, 00500","In metro area, not/partially in principal city",None,None,No,Hour11,105,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,South Bend Michiana Rgnl Ap,41.7,-86.33,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0088.osw,Non-CBSA East South Central,No,150%+,2A,"2A - FL, GA, AL, MS",Hour19,None,4,Hot-Humid,None,Standard Efficiency,East South Central,East South Central,South,"MS, Gulfport",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,Yes,5F,Night Setup +5h,Not Applicable,"MS, Harrison County","G2800470, G28002000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,50%,110%,"MS, 02000","In metro area, not/partially in principal city",None,None,No,Hour20,87,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MS,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Gulfport-Biloxi Intl AP,30.4,-89.067,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0089.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour12,None,4,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Huntington Beach",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"CA, Orange County","G0600590, G06005914",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,100%,94%,"CA, 05914","In metro area, not/partially in principal city",None,None,No,Hour18,10,EF 17.6,100% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0090.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour0,None,4,Cold,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Flagstaff",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"AZ, Coconino County","G0400050, G04000400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,5 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,None,None,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,84%,"AZ, 00400","In metro area, not/partially in principal city",None,None,No,Hour9,28,EF 19.9,100% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Flagstaff Pulliam Arpt,35.13,-111.67,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0091.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour23,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -3h,Not Applicable,"SC, Aiken County","G4500030, G45001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"SC, 01500","In metro area, not/partially in principal city",None,None,No,Hour17,96,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Augusta Bush Field,33.37,-81.97,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0092.osw,Non-CBSA West South Central,No,150%+,3A,3A,Hour13,None,3,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"AR, Pulaski County","G0501190, G05000900",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,113%,"AR, 00900","In metro area, not/partially in principal city",None,None,No,Hour11,85,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Premium,Natural Gas,Yes,Living Space,Little Rock Adams Field,34.75,-92.23,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0093.osw,"CBSA Detroit-Warren-Dearborn, MI",No,100-120%,5A,5A,Hour4,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"MI, St. Clair County","G2601470, G26003100",None,None,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage",2,2,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,Gas Fireplace,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,200%,85%,"MI, 03100","In metro area, not/partially in principal city",None,None,No,Hour17,103,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,St Clair County Int,42.92,-82.53,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0094.osw,Non-CBSA West South Central,No,150%+,4A,4A,Hour16,None,4,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"AR, Fayetteville",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,2F,Night Setback -3h,Not Applicable,"AR, Washington County","G0501430, G05000200",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,113%,"AR, 00200","In metro area, not/partially in principal city",None,None,No,Hour21,56,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Fayetteville Drake Field,36.0,-94.17,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0095.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour22,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, Buffalo",Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Night Setback +4h,Not Applicable,"NY, Erie County","G3600290, G36001205",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,101%,"NY, 01205","In metro area, principal city",None,None,No,Hour18,127,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Buffalo Niagara Intl Ap,42.93,-78.73,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0096.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour1,None,2,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,"PA, Pittsburgh",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,76F,No,0F,None,Not Applicable,"PA, Allegheny County","G4200030, G42001701",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,72F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",<10% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,101%,"PA, 01701","In metro area, principal city",None,None,No,Hour8,115,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Pittsburgh Allegheny Co Ap,40.35,-79.92,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0097.osw,"CBSA San Francisco-Oakland-Hayward, CA",No,150%+,3C,3C,Hour21,None,3,Marine,12,Standard Efficiency,Pacific,Pacific,West,"CA, Livermore",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"CA, Alameda County","G0600010, G06000110",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,94%,"CA, 00110","In metro area, not/partially in principal city",None,None,No,Hour23,9,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Garage,Hayward Air Term,37.67,-122.12,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0098.osw,Non-CBSA Pacific,No,150%+,4C,4C,Hour14,None,4,Marine,None,Standard Efficiency,Pacific,Pacific,West,"OR, Eugene",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"OR, Lane County","G4100390, G41000703",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,None,Gas Fireplace,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,94%,"OR, 00703","In metro area, not/partially in principal city",None,None,No,Hour16,5,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Garage,Eugene Mahlon Sweet Arpt Uo,44.05,-123.07,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0099.osw,Non-CBSA West North Central,No,150%+,6A,6A,Hour20,None,3,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"MN, St Paul",Gas,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"MN, Ramsey County","G2701230, G27001304",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,95%,"MN, 01304","In metro area, principal city",None,None,No,Hour19,43,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MN,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,St Paul Downtown Ap,44.93,-93.05,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0100.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour19,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback -5h,Not Applicable,"FL, Citrus County","G1200170, G12001701",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,200-300%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"FL, 01701","In metro area, not/partially in principal city",None,None,No,Hour18,101,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Ocala Muni Awos,29.17,-82.22,F9 B9 L9 R9,"Single, Clear, Metal"
-project_national-0101.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,30-60%,4A,4A,Hour7,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, Yonkers",None,80% Usage,None,None,80% Usage,Gas,80% Usage,65F,No,0F,None,Double-Loaded Interior,"NY, Westchester County","G3601190, G36003106",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,200-300%,NYSTc,None,Right,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,70F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,35000-39999,20000-39999,20000-39999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,North,None,50%,89%,"NY, 03106","In metro area, not/partially in principal city",None,None,None,Hour7,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,No,None,White Plains Westchester Co A,41.07,-73.72,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_national-0102.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,60-80%,5A,5A,Hour19,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003413",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 03413","In metro area, not/partially in principal city",None,None,No,Hour17,80,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0103.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback,Not Applicable,"GA, Hall County","G1301390, G13003400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,106%,"GA, 03400","In metro area, not/partially in principal city",None,None,No,Hour20,94,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Rome R B Russell Ap,34.35,-85.17,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0104.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour6,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Richmond",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"VA, Richmond city","G5107600, G51051235",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,200%,106%,"VA, 51235","In metro area, principal city",None,None,No,Hour22,99,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Richmond International Ap,37.52,-77.32,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0105.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour19,None,5,Cold,None,None,Mountain,Mountain South,West,"NM, Santa Fe",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback +3h,Not Applicable,"NM, Santa Fe County","G3500490, G35000500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Heated Basement,3 Car,"Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-38,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,84%,"NM, 00500","In metro area, not/partially in principal city",None,None,No,Hour8,31,EF 17.6,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NM,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Sata Fe County Municipal Ap,35.62,-106.08,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0106.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,1,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,120% Usage,None,None,120% Usage,Gas,120% Usage,76F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003806",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,North,None,200%,89%,"NY, 03806","In metro area, principal city",None,None,None,Hour8,127,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Tankless,Natural Gas,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0107.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour22,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"MD, Rockville",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,No,0F,None,Not Applicable,"MD, Montgomery County","G2400310, G24001003",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Southeast,None,100%,106%,"MD, 01003","In metro area, not/partially in principal city",None,None,No,Hour18,123,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MD,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Unheated Basement,Washington Dc Reagan Ap,38.87,-77.03,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0108.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,68F,Yes,2F,Night Setback +2h,Not Applicable,"CA, Los Angeles County","G0600370, G06003730",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,Natural Gas,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,50%,94%,"CA, 03730","In metro area, principal city",None,None,No,Hour19,10,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0109.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour2,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Peoria",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,65F,No,0F,None,Not Applicable,"IL, Peoria County","G1701430, G17001701",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,750-999,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,6F,Night,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northwest,None,200%,85%,"IL, 01701","In metro area, not/partially in principal city",None,None,No,Hour19,82,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Peoria Greater Peoria Ap,40.67,-89.68,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0110.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour10,None,4,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,Yes,2F,Night Setback +3h,Not Applicable,"FL, St. Johns County","G1201090, G12010900",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,76F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-38,Ceiling R-13,None,None,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 10900","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 15.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Propane Tankless,Propane,Yes,Living Space,Jacksonville Nas,30.23,-81.67,F6 B6 L6 R6,"Double, Clear, Metal, Air"
-project_national-0111.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour6,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Laguna Niguel",Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"CA, Orange County","G0600590, G06005901",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,Natural Gas,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,50%,94%,"CA, 05901","In metro area, not/partially in principal city",None,None,No,Hour13,10,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_national-0112.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Rockford",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,67F,No,0F,None,Not Applicable,"IL, Winnebago County","G1702010, G17002801",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR04,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northwest,None,50%,85%,"IL, 02801","In metro area, not/partially in principal city",None,None,No,Hour12,80,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Rockford Greater Rockford Ap,42.2,-89.1,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0113.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour8,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,76F,Yes,2F,Night Setback -4h,Not Applicable,"CA, Los Angeles County","G0600370, G06003727",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,Has Pool,Natural Gas,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,94%,"CA, 03727","In metro area, principal city",None,None,No,Hour19,10,EF 19.9,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Tankless,Natural Gas,Yes,Garage,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0114.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,0-30%,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,100% Usage,None,None,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"IL, Cook County","G1700310, G17003529",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCWc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",5,4+,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,East,None,100%,89%,"IL, 03529","In metro area, principal city",None,None,None,Hour14,80,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0115.osw,Non-CBSA East South Central,No,150%+,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,None,East South Central,East South Central,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,76F,No,0F,None,Not Applicable,"AL, Mobile County","G0100970, G01002703",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,North,None,50%,110%,"AL, 02703","In metro area, not/partially in principal city",None,None,No,Hour17,90,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Mobile Regional Ap,30.68,-88.25,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0116.osw,Non-CBSA West North Central,No,120-150%,5A,5A,Hour16,None,4,Cold,None,None,West North Central,West North Central,Midwest,"IA, Des Moines",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback -3h,Not Applicable,"IA, Polk County","G1901530, G19001700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,95%,"IA, 01700","In metro area, principal city",None,None,No,Hour16,70,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Garage,Des Moines Intl Ap,41.53,-93.67,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0117.osw,Non-CBSA West South Central,No,120-150%,2A,"2A - TX, LA",Hour23,None,5,Hot-Humid,None,Standard Efficiency,West South Central,West South Central,South,"LA, Baton Rouge",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,76F,Yes,9F,Night Setback +1h,Not Applicable,"LA, East Baton Rouge Parish","G2200330, G22001501",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRMVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,113%,"LA, 01501","In metro area, not/partially in principal city",None,None,No,Hour19,58,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,LA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Baton Rouge Ryan Arpt,30.53,-91.15,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0118.osw,Non-CBSA South Atlantic,No,100-120%,3A,3A,Hour15,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"GA, Augusta-Richmond County Consolidated Government Balance",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,9F,Night Setback -1h,Not Applicable,"GA, Richmond County","G1302450, G13004000",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,100%,106%,"GA, 04000","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Augusta Bush Field,33.37,-81.97,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0119.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,100-120%,3A,3A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -4h,Not Applicable,"GA, Gwinnett County","G1301350, G13004006",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,106%,"GA, 04006","In metro area, not/partially in principal city",None,None,No,Hour7,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Premium,Natural Gas,Yes,Garage,Dekalb Peachtree,33.87,-84.3,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0120.osw,Non-CBSA East North Central,No,100-120%,6A,6A,Hour3,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"WI, West Allis",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback +2h,Not Applicable,"WI, Milwaukee County","G5500790, G55040701",None,None,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,200-300%,RFCWc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Finished Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Northwest,None,100%,85%,"WI, 40701","In metro area, not/partially in principal city",None,None,No,Hour17,79,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0121.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,6A,6A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"WI, Kenosha",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"WI, Kenosha County","G5500590, G55010000",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,West,None,100%,85%,"WI, 10000","In metro area, not/partially in principal city",None,None,No,Hour18,79,EF 21.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Milwaukee Mitchell Intl Ap,42.95,-87.9,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0122.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,0-30%,3B,3B,Hour1,None,1,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",None,120% Usage,None,None,120% Usage,Gas,120% Usage,75F,No,0F,None,Double-Loaded Interior,"CA, Los Angeles County","G0600370, G06003732",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,0-100%,CAMXc,None,Middle,None,Top,24,None,20 to 49 Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",3,3,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,10000-14999,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,Southwest,None,200%,91%,"CA, 03732","In metro area, principal city",None,None,None,Hour17,10,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,No,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0123.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour19,None,3,Marine,2,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"CA, Sonoma County","G0600970, G06009701",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,94%,"CA, 09701","In metro area, not/partially in principal city",None,None,No,Hour17,9,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Tankless,Natural Gas,Yes,Garage,Santa Rosa Awos,38.52,-122.82,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_national-0124.osw,Non-CBSA Pacific,No,120-150%,1A,1A,Hour7,None,3,Hot-Humid,None,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +5h,Not Applicable,"HI, Hawaii County","G1500010, G15000200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,,,,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,None,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,None,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,None,None,None,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CRHI,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,94%,"HI, 00200",Not/partially in metro area,None,None,No,Hour17,None,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,HI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Hilo International Ap,19.72,-155.05,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0125.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour3,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, New Rochelle",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"NY, Westchester County","G3601190, G36003107",None,None,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,50%,101%,"NY, 03107","In metro area, not/partially in principal city",None,None,No,Hour6,127,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,White Plains Westchester Co A,41.07,-73.72,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0126.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"SC, Spartanburg County","G4500830, G45000302",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 15.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"SC, 00302","In metro area, not/partially in principal city",None,None,No,Hour16,95,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Greer GreenvL Spartanbrg Ap,34.9,-82.22,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0127.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,100-120%,4A,4A,Hour0,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,120% Usage,None,None,120% Usage,Gas,120% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, Kings County","G3600470, G36004009",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,80000-99999,80000-99999,60000-99999,50 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,2,North,None,200%,119%,"NY, 04009","In metro area, principal city",None,None,None,Hour11,127,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0128.osw,Non-CBSA New England,No,150%+,5A,5A,Hour3,None,4,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"CT, Litchfield County","G0900050, G09000500",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,99%,"CT, 00500",Not/partially in metro area,None,None,No,Hour12,132,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Oxford Awos,41.48,-73.13,F12 B12 L12 R12,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_national-0129.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,120-150%,1A,1A,Hour22,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Tamarac",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"FL, Broward County","G1200110, G12001105",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,106%,"FL, 01105","In metro area, not/partially in principal city",None,None,No,Hour17,102,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Premium,Electricity,Yes,Garage,Fort Lauderdale,26.2,-80.17,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0130.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour20,None,5,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback +4h,Not Applicable,"WI, Waukesha County","G5501330, G55070201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,85%,"WI, 70201","In metro area, not/partially in principal city",None,None,No,Hour10,79,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0131.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour7,None,3,Cold,None,None,East North Central,East North Central,Midwest,"IL, Evanston",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,76F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003421",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 03421","In metro area, not/partially in principal city",None,None,No,Hour12,80,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0132.osw,Non-CBSA South Atlantic,No,100-120%,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"FL, Escambia County","G1200330, G12003302",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,40 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southwest,None,100%,106%,"FL, 03302","In metro area, not/partially in principal city",None,None,No,Hour7,91,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Pensacola Regional Ap,30.48,-87.18,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0133.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour14,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Spring Valley",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,No,0F,None,Not Applicable,"NV, Clark County","G3200030, G32000408",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,84%,"NV, 00408","In metro area, not/partially in principal city",None,None,No,Hour13,13,EF 17.6,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Las Vegas Mccarran Intl Ap,36.08,-115.15,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0134.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour18,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"PA, Monroe County","G4200890, G42000600",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,200%,101%,"PA, 00600","In metro area, not/partially in principal city",None,None,No,Hour12,122,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Heated Basement,Allentown Lehigh Valley Intl,40.65,-75.45,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0135.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour10,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Olympia",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"WA, Thurston County","G5300670, G53011401",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,12F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,West,None,200%,94%,"WA, 11401","In metro area, not/partially in principal city",None,None,No,Hour10,1,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Olympia Airport,46.97,-122.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0136.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour4,None,3,Hot-Dry,None,None,Mountain,Mountain South,West,"NV, Henderson",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -2h,Not Applicable,"NV, Clark County","G3200030, G32000411",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,4 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,84%,"NV, 00411","In metro area, not/partially in principal city",None,None,No,Hour18,13,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Las Vegas Mccarran Intl Ap,36.08,-115.15,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0137.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,0-30%,4A,4A,Hour13,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"PA, Philadelphia",None,120% Usage,None,None,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Double-Loaded Interior,"PA, Philadelphia County","G4201010, G42003209",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,RFCEc,None,Left,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,Southwest,None,200%,89%,"PA, 03209","In metro area, principal city",None,None,None,Hour17,122,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Philadelphia Ne Philadelphia,40.08,-75.02,F30 B30 L30 R30,"Single, Clear, Metal"
-project_national-0138.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour16,None,5,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, San Tan Valley",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,80F,No,0F,None,Not Applicable,"AZ, Pinal County","G0400210, G04000803",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,4 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,84%,"AZ, 00803","In metro area, not/partially in principal city",None,None,No,Hour13,28,EF 19.9,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Casa Granda Awos,32.95,-111.77,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0139.osw,Non-CBSA West North Central,No,100-120%,5A,5A,Hour18,None,4,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"IA, Cedar Rapids",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"IA, Linn County","G1901130, G19001000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 60% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-49,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,95%,"IA, 01000","In metro area, not/partially in principal city",None,None,No,Hour16,70,EF 17.6,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Cedar Rapids Municipal Ap,41.88,-91.72,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0140.osw,Non-CBSA New England,No,120-150%,6A,6A,Hour1,None,3,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"VT, Chittenden County","G5000070, G50000100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,99%,"VT, 00100","In metro area, not/partially in principal city",None,None,No,Hour18,129,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VT,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Burlington International Ap,44.47,-73.15,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0141.osw,Non-CBSA Mountain,No,150%+,2B,2B,Hour1,None,4,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Yuma",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"AZ, Yuma County","G0400270, G04000700",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,200%,84%,"AZ, 00700","In metro area, not/partially in principal city",None,None,No,Hour18,28,EF 17.6,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Yuma Intl Arpt,32.67,-114.6,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0142.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour2,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003729",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,94%,"CA, 03729","In metro area, principal city",None,None,No,Hour15,10,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Single, Clear, Non-metal"
-project_national-0143.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour23,None,4,Cold,None,None,Mountain,Mountain North,West,"CO, Fort Collins",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Not Applicable,"CO, Larimer County","G0800690, G08000103",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,91%,"CO, 00103","In metro area, not/partially in principal city",None,None,No,Hour15,33,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Fort Collins Awos,40.45,-105.02,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_national-0144.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour4,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"FL, Osceola County","G1200970, G12009701",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,75F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,Has Pool,Other Fuel,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,106%,"FL, 09701","In metro area, not/partially in principal city",None,None,No,Hour9,101,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Orlando Intl Arpt,28.43,-81.33,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0145.osw,"CBSA Houston-The Woodlands-Sugar Land, TX",No,120-150%,2A,"2A - TX, LA",Hour10,None,3,Hot-Humid,None,None,West South Central,West South Central,South,"TX, Galveston",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"TX, Galveston County","G4801670, G48004701",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,78F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-7,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",ERCOT,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,113%,"TX, 04701","In metro area, not/partially in principal city",None,None,No,Hour9,67,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TX,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Outside,Houston Ellington Afb Clear L,29.57,-95.09,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0146.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour5,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback -3h,Not Applicable,"FL, Hillsborough County","G1200570, G12005708",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,50%,106%,"FL, 05708","In metro area, not/partially in principal city",None,None,No,Hour12,101,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Tampa International Ap,27.97,-82.53,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0147.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour20,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,2F,Night Setback,Not Applicable,"MI, Wayne County","G2601630, G26003201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,67F,Yes,6F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,85%,"MI, 03201","In metro area, not/partially in principal city",None,None,No,Hour11,103,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0148.osw,"CBSA Dallas-Fort Worth-Arlington, TX",No,120-150%,3A,3A,Hour17,None,2,Hot-Humid,None,Standard Efficiency,West South Central,West South Central,South,"TX, Dallas",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double-Loaded Interior,"TX, Dallas County","G4801130, G48002313",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,ERCTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Shared Cooling,100% Conditioned,Central AC,No,Heating and Cooling,No,Shared Heating,Ducted Heating,Electricity Shared Heating,None,None,None,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",ERCOT,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",4,2,West,None,200%,104%,"TX, 02313","In metro area, principal city",None,None,None,Hour22,63,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,TX,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,Yes,Living Space,Dallas Love Field,32.85,-96.85,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0149.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour16,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -1h,Not Applicable,"FL, Volusia County","G1201270, G12012703",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,200-300%,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-13","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,North,None,100%,106%,"FL, 12703","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Daytona Beach Intl Ap,29.18,-81.07,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0150.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,Not Available,3B,3B,Hour23,None,2,Hot-Dry,16,"Standard Efficiency, No usage",Pacific,Pacific,West,In another census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"CA, San Bernardino County","G0600710, G06007104",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,Not Available,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,55F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,Not Available,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,Not Available,Not Available,Not Available,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,0,Southwest,None,100%,94%,"CA, 07104","In metro area, not/partially in principal city",None,None,No,Hour8,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Not Available,1,Medium,,,,,,,,,,,,,,,Bills,,,,Vacant,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Riverside Muni,33.95,-117.45,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0151.osw,Non-CBSA Mountain,No,100-120%,6B,6B,Hour17,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"MT, Missoula",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"MT, Missoula County","G3000630, G30000200",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,6 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,91%,"MT, 00200",Not/partially in metro area,None,None,No,Hour7,17,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MT,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Missoula International Ap,46.92,-114.1,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0152.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour18,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,"RI, Warwick",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,Yes,2F,Night Setback -1h,Not Applicable,"RI, Kent County","G4400030, G44000201",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",80% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,99%,"RI, 00201","In metro area, not/partially in principal city",None,None,No,Hour10,133,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,RI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Providence T F Green State Ar,41.72,-71.43,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0153.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour7,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,5F,Night Setback -5h,Not Applicable,"SC, Richland County","G4500790, G45000603",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Unvented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"SC, 00603","In metro area, not/partially in principal city",None,None,No,Hour16,96,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Columbia Metro Arpt,33.95,-81.12,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0154.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour23,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"NC, Greenville",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"NC, Pitt County","G3701470, G37004200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,None,Brick,No,Electricity,70F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-13,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 15.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,106%,"NC, 04200","In metro area, not/partially in principal city",None,None,No,Hour17,98,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Living Space,Pitt Greenville Arp,35.63,-77.4,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0155.osw,"CBSA Detroit-Warren-Dearborn, MI",No,0-30%,5A,5A,Hour5,None,3,Cold,None,None,East North Central,East North Central,Midwest,"MI, Detroit",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,68F,Yes,5F,Night Setback +2h,Not Applicable,"MI, Wayne County","G2601630, G26003208",None,None,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,30 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,100%,85%,"MI, 03208","In metro area, principal city",None,None,No,Hour20,103,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0156.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour7,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,60F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003525",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",6,4+,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southwest,None,100%,89%,"IL, 03525","In metro area, principal city",None,None,None,Hour6,80,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,No,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0157.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour12,None,2,Cold,None,Standard Efficiency,New England,New England,Northeast,"MA, Boston",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,5F,Night Setback +4h,Double-Loaded Interior,"MA, Suffolk County","G2500250, G25003302",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,None,Middle,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",6,4+,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Electricity",No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-19","2ft R10 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",4,2,Southwest,None,100%,94%,"MA, 03302","In metro area, principal city",None,None,None,Hour13,131,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MA,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,No,None,Boston Logan IntL Arpt,42.37,-71.02,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0158.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour3,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"SC, Charleston",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"SC, Charleston County","G4500190, G45001202",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,106%,"SC, 01202","In metro area, not/partially in principal city",None,None,No,Hour16,96,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Charleston Intl Arpt,32.9,-80.03,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0159.osw,Non-CBSA West North Central,No,150%+,4A,4A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"KS, Overland Park",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"KS, Johnson County","G2000910, G20000602",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,95%,"KS, 00602","In metro area, not/partially in principal city",None,None,No,Hour14,53,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,KS,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Olathe Johnson Co,38.85,-94.73,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0160.osw,Non-CBSA South Atlantic,No,100-120%,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"DE, Sussex County","G1000050, G10000300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Northwest,None,50%,106%,"DE, 00300","In metro area, not/partially in principal city",None,None,No,Hour18,125,EF 19.9,95% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,DE,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Salisbury-Ocean City-Wicomico Rgnl AP,38.333,-75.517,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0161.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,120-150%,1A,1A,Hour0,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Pompano Beach",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,76F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"FL, Broward County","G1200110, G12001104",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,Middle,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",3,3,<8,None,Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,200%,106%,"FL, 01104","In metro area, not/partially in principal city",None,None,None,Hour12,102,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,No,None,Fort Lauderdale,26.2,-80.17,F12 B12 L12 R12,"Single, Clear, Metal"
-project_national-0162.osw,Non-CBSA Middle Atlantic,No,100-120%,5A,5A,Hour23,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"NY, Erie County","G3600290, G36001207",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,100%,101%,"NY, 01207","In metro area, not/partially in principal city",None,None,No,Hour7,127,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Buffalo Niagara Intl Ap,42.93,-78.73,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0163.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour7,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Not Applicable,"FL, Bay County","G1200050, G12000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Electricity,76F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,8 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,106%,"FL, 00500",Not/partially in metro area,None,None,No,Hour6,91,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Panama City Bay Co,30.2,-85.68,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0164.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour23,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,76F,Yes,2F,Night Setback +3h,Not Applicable,"AZ, Mohave County","G0400150, G04000600",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,67F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",80% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,84%,"AZ, 00600",Not/partially in metro area,None,None,No,Hour19,27,EF 17.6,95% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Kingman Amos,35.27,-113.95,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0165.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour7,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Gas,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003734",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,75F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,100%,94%,"CA, 03734","In metro area, principal city",None,None,No,Hour15,10,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Garage,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Single, Clear, Metal"
-project_national-0166.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour3,None,3,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,No,0F,None,Not Applicable,"WI, Racine County","G5501010, G55030000",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,EF 19.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,85%,"WI, 30000","In metro area, not/partially in principal city",None,None,No,Hour18,79,EF 19.9,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0167.osw,Non-CBSA South Atlantic,No,120-150%,4A,4A,Hour22,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Newport News",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"VA, Newport News city","G5107000, G51051175",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,76F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"VA, 51175","In metro area, principal city",None,None,No,Hour19,99,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Newport News,37.13,-76.5,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0168.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour21,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"KY, Lexington-Fayette",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,Yes,5F,Night Setup +5h,Not Applicable,"KY, Fayette County","G2100670, G21001902",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unvented Crawlspace,2 Car,"Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,7 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,110%,"KY, 01902","In metro area, principal city",None,None,No,Hour14,109,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,KY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Lexington Bluegrass Ap,38.03,-84.6,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0169.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,80-100%,2B,2B,Hour14,None,3,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Sun City",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,80F,No,0F,None,Not Applicable,"AZ, Maricopa County","G0400130, G04000130",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,200%,84%,"AZ, 00130","In metro area, not/partially in principal city",None,None,No,Hour14,28,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0170.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour7,None,3,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Columbia",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,67F,Yes,5F,Night Setback -5h,Not Applicable,"MO, Boone County","G2900190, G29000600",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,8 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,95%,"MO, 00600","In metro area, not/partially in principal city",None,None,No,Hour18,72,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Columbia Regional Airport,38.82,-92.22,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0171.osw,Non-CBSA Middle Atlantic,No,100-120%,5A,5A,Hour8,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"PA, Butler County","G4200190, G42001600",None,None,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,100%,101%,"PA, 01600","In metro area, not/partially in principal city",None,None,No,Hour18,115,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Butler Co Awos,40.78,-79.95,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0172.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour5,None,5,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"FL, Polk County","G1201050, G12010502",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,3 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,Other Fuel,Has Pool,Natural Gas,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,106%,"FL, 10502","In metro area, not/partially in principal city",None,None,No,Hour9,101,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Lakeland Linder Rgn,27.98,-82.02,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0173.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour19,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,"FL, Spring Hill",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"FL, Hernando County","G1200530, G12005301",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"FL, 05301","In metro area, not/partially in principal city",None,None,No,Hour14,101,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Living Space,Tampa International Ap,27.97,-82.53,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0174.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour7,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +2h,Not Applicable,"MO, St. Louis County","G2901890, G29001807",None,None,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,SRMWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,95%,"MO, 01807","In metro area, not/partially in principal city",None,None,No,Hour13,72,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,St Louis Lambert IntL Arpt,38.75,-90.37,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0175.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour10,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setup +5h,Not Applicable,"AL, Jefferson County","G0100730, G01001303",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,110%,"AL, 01303","In metro area, not/partially in principal city",None,None,No,Hour17,89,EF 17.6,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Birmingham Municipal Ap,33.57,-86.75,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0176.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour21,None,3,Mixed-Humid,None,None,East South Central,East South Central,South,"TN, Knoxville",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"TN, Knox County","G4700930, G47001603",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,110%,"TN, 01603","In metro area, not/partially in principal city",None,None,No,Hour12,92,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Knoxville Mcghee Tyson Ap,35.82,-83.98,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0177.osw,Non-CBSA Middle Atlantic,No,80-100%,6A,6A,Hour17,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, Utica",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"NY, Oneida County","G3600650, G36000402",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,101%,"NY, 00402","In metro area, not/partially in principal city",None,None,No,Hour13,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Utica Oneida County Ap,43.15,-75.38,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
-project_national-0178.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour7,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, Bronx County","G3600050, G36003709",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,North,None,100%,89%,"NY, 03709","In metro area, principal city",None,None,None,Hour20,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,FIXME Fuel Oil Indirect,Fuel Oil,No,None,New York Laguardia Arpt,40.78,-73.88,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0179.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour13,None,4,Hot-Humid,None,Standard Efficiency,East South Central,East South Central,South,"AL, Montgomery",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback,Not Applicable,"AL, Montgomery County","G0101010, G01002000",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"AL, 02000","In metro area, not/partially in principal city",None,None,No,Hour21,90,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Maxwell Afb,32.38,-86.35,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0180.osw,Non-CBSA East South Central,No,100-120%,2A,"2A - FL, GA, AL, MS",Hour12,None,3,Hot-Humid,None,None,East South Central,East South Central,South,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,5F,Night Setback -4h,Not Applicable,"AL, Baldwin County","G0100030, G01002600",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,50%,110%,"AL, 02600","In metro area, not/partially in principal city",None,None,No,Hour18,90,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Mobile Downtown Ap,30.63,-88.07,F12 B12 L12 R12,"Single, Clear, Metal"
-project_national-0181.osw,Non-CBSA Pacific,No,100-120%,3B,3B,Hour4,None,2,Hot-Dry,7,Standard Efficiency,Pacific,Pacific,West,"CA, San Diego",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,75F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"CA, San Diego County","G0600730, G06007316",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",4,4+,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,2,West,None,50%,91%,"CA, 07316","In metro area, principal city",None,None,None,Hour11,11,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,No,None,San Diego Miramar Nas,32.87,-117.13,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0182.osw,Non-CBSA West North Central,No,80-100%,4A,4A,Hour11,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Kansas City",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,No,0F,None,Not Applicable,"MO, Jackson County","G2900950, G29001005",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,95%,"MO, 01005","In metro area, not/partially in principal city",None,None,No,Hour17,54,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Kansas City Downtown Ap,39.12,-94.6,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0183.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour14,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,76F,Yes,2F,Night Setback +5h,Not Applicable,"UT, Davis County","G4900110, G49011001",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,5 ACH50,R-49,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,91%,"UT, 11001","In metro area, not/partially in principal city",None,None,No,Hour7,25,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,UT,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Ogden Hill Afb,41.12,-111.97,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0184.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour0,None,2,Cold,None,None,East North Central,East North Central,Midwest,"IL, Champaign",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,5F,Night Setback +3h,Not Applicable,"IL, Champaign County","G1700190, G17002100",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Unvented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",<10% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,200%,85%,"IL, 02100","In metro area, not/partially in principal city",None,None,No,Hour14,83,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Univ Of Illinois Wi Bondville,40.06,-88.37,F9 B9 L9 R9,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_national-0185.osw,Non-CBSA West North Central,No,0-30%,6A,6A,Hour18,None,1,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"MN, Minneapolis",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Double-Loaded Interior,"MN, Hennepin County","G2700530, G27001407",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,MROWc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,East,None,50%,86%,"MN, 01407","In metro area, principal city",None,None,None,Hour11,43,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MN,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Natural Gas Standard,Natural Gas,No,None,Minneapolis Crystal,45.07,-93.35,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0186.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Memphis",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"TN, Shelby County","G4701570, G47003201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,76F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,110%,"TN, 03201","In metro area, principal city",None,None,No,Hour10,92,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Premium,Electricity,Yes,Living Space,Memphis International Ap,35.07,-89.98,F6 B6 L6 R6,"Single, Clear, Non-metal"
-project_national-0187.osw,Non-CBSA Pacific,No,100-120%,4B,4B,Hour6,None,3,Mixed-Dry,12,Standard Efficiency,Pacific,Pacific,West,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"CA, El Dorado County","G0600170, G06001700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Propane,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,100%,94%,"CA, 01700","In metro area, not/partially in principal city",None,None,No,Hour0,9,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Propane Standard,Propane,Yes,Living Space,South Lake Tahoe,38.9,-120.0,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0188.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"FL, Martin County","G1200850, G12008500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,Has Pool,Electricity,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"FL, 08500","In metro area, not/partially in principal city",None,None,No,Hour17,102,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,St Lucie Co Intl,27.48,-80.37,F12 B12 L12 R12,"Single, Clear, Metal"
-project_national-0189.osw,Non-CBSA Middle Atlantic,No,150%+,4A,4A,Hour2,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"NJ, Cape May County","G3400090, G34002600",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,101%,"NJ, 02600","In metro area, not/partially in principal city",None,None,No,Hour17,126,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Cape May Co,39.0,-74.92,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0190.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour2,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +1h,Not Applicable,"NC, Brunswick County","G3700190, G37004800",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"NC, 04800","In metro area, not/partially in principal city",None,None,No,Hour13,98,EF 15.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Wilmington International Arpt,34.27,-77.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0191.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour22,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Clarksville",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,78F,No,0F,None,Not Applicable,"TN, Montgomery County","G4701250, G47000300",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"TN, 00300",Not/partially in metro area,None,None,No,Hour14,92,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Fort Campbell Aaf,36.67,-87.48,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0192.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour5,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,76F,Yes,2F,Night Setback +1h,Not Applicable,"VA, Prince William County","G5101530, G51051246",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,106%,"VA, 51246","In metro area, not/partially in principal city",None,None,No,Hour4,99,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Manassas Muni Awos,38.72,-77.52,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0193.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour1,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"DC, Washington",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Double-Loaded Interior,"DC, District of Columbia","G1100010, G11000105",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,Right,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Concrete,No,Electricity,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38","2ft R5 Perimeter, Vertical","CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,100%,106%,"DC, 00105","In metro area, principal city",None,None,None,Hour10,123,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,DC,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,No,None,Washington Dc Reagan Ap,38.87,-77.03,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0194.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Virginia Beach",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback -1h,Not Applicable,"VA, Virginia Beach city","G5108100, G51051165",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Unvented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,50%,106%,"VA, 51165","In metro area, principal city",None,None,No,Hour12,99,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Premium,Electricity,Yes,Living Space,Oceana Nas,36.82,-76.03,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0195.osw,Non-CBSA East South Central,No,120-150%,4A,4A,Hour22,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,65F,No,0F,None,Not Applicable,"KY, Kenton County","G2101170, G21002400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,Gas Fireplace,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,110%,"KY, 02400","In metro area, not/partially in principal city",None,None,No,Hour14,109,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,KY,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Cincinnati Northern Ky Ap,39.05,-84.67,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0196.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour6,None,3,Hot-Dry,12,Standard Efficiency,Pacific,Pacific,West,"CA, Davis",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,78F,No,0F,None,Not Applicable,"CA, Yolo County","G0601130, G06011300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,94%,"CA, 11300","In metro area, not/partially in principal city",None,None,No,Hour17,9,EF 15.9,95% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Sacramento Metropolitan Ap,38.7,-121.58,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0197.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour5,None,4,Hot-Dry,7,Standard Efficiency,Pacific,Pacific,West,"CA, San Diego",Gas,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,5F,Night Setback -3h,Not Applicable,"CA, San Diego County","G0600730, G06007310",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,200%,94%,"CA, 07310","In metro area, not/partially in principal city",None,None,No,Hour18,11,EF 15.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,San Diego Miramar Nas,32.87,-117.13,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_national-0198.osw,Non-CBSA Mountain,No,30-60%,3B,3B,Hour6,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Paradise",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,No,0F,None,Double-Loaded Interior,"NV, Clark County","G3200030, G32000409",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,150-200%,AZNMc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",5,4+,<8,"Stucco, Light",Wood Frame,No,Electricity,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Shared Cooling,100% Conditioned,Central AC,No,Heating and Cooling,No,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,25000-29999,20000-39999,20000-39999,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",12,2,West,None,100%,106%,"NV, 00409","In metro area, not/partially in principal city",None,None,None,Hour23,13,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NV,Renter,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Las Vegas Mccarran Intl Ap,36.08,-115.15,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_national-0199.osw,Non-CBSA Pacific,No,150%+,5B,5B,Hour5,None,3,Cold,None,None,Pacific,Pacific,West,"OR, Bend",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,9F,Night Setback +4h,Not Applicable,"OR, Deschutes County","G4100170, G41000400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,72F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,100%,94%,"OR, 00400","In metro area, not/partially in principal city",None,None,No,Hour15,5,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Redmond Roberts Field,44.25,-121.17,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0200.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Cape Coral",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,80F,Yes,5F,Night Setback +5h,Not Applicable,"FL, Lee County","G1200710, G12007102",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,50%,106%,"FL, 07102","In metro area, not/partially in principal city",None,None,No,Hour7,101,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Fort Myers Page Field,26.58,-81.87,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0201.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour2,None,4,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"WI, Dane County","G5500250, G55000103",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,75F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,85%,"WI, 00103","In metro area, not/partially in principal city",None,None,No,Hour17,78,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Madison Dane Co Regional Arpt,43.13,-89.33,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0202.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour1,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Not Applicable,"SC, Greenville County","G4500450, G45000103",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,200%,106%,"SC, 00103","In metro area, not/partially in principal city",None,None,No,Hour9,95,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Garage,Greenville Downtown Ap,34.85,-82.35,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0203.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour4,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,68F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003808",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",12,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,South,None,50%,89%,"NY, 03808","In metro area, principal city",None,None,None,Hour21,127,EF 15.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Metal"
-project_national-0204.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour3,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"MI, Saginaw County","G2601450, G26001500",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,100%,85%,"MI, 01500","In metro area, not/partially in principal city",None,None,No,Hour9,103,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Saginaw Tri City Intl Ap,43.53,-84.08,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0205.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour0,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Grand Rapids",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,5F,Night Setup +2h,Not Applicable,"MI, Kent County","G2600810, G26001002",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,85%,"MI, 01002","In metro area, not/partially in principal city",None,None,No,Hour10,103,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Grand Rapids Kent County Int,42.88,-85.52,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0206.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour21,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setup +3h,Not Applicable,"PA, Allegheny County","G4200030, G42001804",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,EF 19.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,50%,101%,"PA, 01804","In metro area, not/partially in principal city",None,None,No,Hour22,115,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Pittsburgh Allegheny Co Ap,40.35,-79.92,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_national-0207.osw,Non-CBSA West North Central,No,150%+,4A,4A,Hour9,None,5,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Kansas City",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,65F,Yes,5F,Night Setback +4h,Not Applicable,"MO, Jackson County","G2900950, G29001001",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",3,3,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,3F,Night,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,100%,95%,"MO, 01001","In metro area, principal city",None,None,No,Hour18,54,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Kansas City Downtown Ap,39.12,-94.6,F6 B6 L6 R6,"Single, Clear, Metal"
-project_national-0208.osw,Non-CBSA Pacific,No,150%+,7AK,7AK,Hour3,None,3,Very Cold,None,Standard Efficiency,Pacific,Pacific,West,"AK, Anchorage",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"AK, Anchorage Municipality","G0200200, G02000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,,,,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,None,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CRAK,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,94%,"AK, 00102","In metro area, principal city",None,None,No,Hour9,None,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AK,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Anchorage Elmendorf,61.25,-149.8,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0209.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback +5h,Not Applicable,"NC, Alamance County","G3700010, G37001600",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,7 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,106%,"NC, 01600","In metro area, not/partially in principal city",None,None,No,Hour6,98,EF 15.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Danville Faa Ap,36.57,-79.33,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0210.osw,Non-CBSA New England,No,100-120%,6A,6A,Hour4,None,4,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"ME, York County","G2300310, G23000800",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NEWEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,99%,"ME, 00800","In metro area, not/partially in principal city",None,None,No,Hour15,134,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,ME,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Sanford Muni Awos,43.4,-70.72,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0211.osw,Non-CBSA South Atlantic,No,0-30%,3A,3A,Hour5,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"GA, Macon",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"GA, Bibb County","G1300210, G13001400",None,None,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,0-100%,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,100%,106%,"GA, 01400","In metro area, not/partially in principal city",None,None,No,Hour12,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Living Space,Macon Middle Ga Regional Ap,32.68,-83.65,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_national-0212.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour6,None,4,Cold,None,None,East North Central,East North Central,Midwest,Not in a census Place,Gas,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"MI, Livingston County","G2600930, G26002800",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,85%,"MI, 02800","In metro area, not/partially in principal city",None,None,No,Hour19,103,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Living Space,Howell,42.63,-83.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
-project_national-0213.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour23,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,"RI, Pawtucket",Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"RI, Providence County","G4400070, G44000102",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,200%,99%,"RI, 00102","In metro area, not/partially in principal city",None,None,No,Hour17,133,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,RI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Pawtucket Awos,41.92,-71.5,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0214.osw,Non-CBSA New England,No,100-120%,5A,5A,Hour18,None,3,Cold,None,None,New England,New England,Northeast,"MA, Worcester",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,60F,No,0F,None,Not Applicable,"MA, Worcester County","G2500270, G25000300",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",60% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,99%,"MA, 00300","In metro area, principal city",None,None,No,Hour16,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Worchester Regional Arpt,42.27,-71.88,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0215.osw,Non-CBSA West North Central,No,150%+,7A,7A,Hour6,None,3,Very Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"MN, St. Louis County","G2701370, G27000400",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,95%,"MN, 00400",Not/partially in metro area,None,None,No,Hour2,43,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MN,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Duluth International Arpt,46.83,-92.22,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0216.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,150%+,3B,3B,Hour19,None,3,Hot-Dry,15,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"CA, Riverside County","G0600650, G06006515",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,200%,94%,"CA, 06515","In metro area, not/partially in principal city",None,None,No,Hour12,10,EF 17.6,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,March Afb,33.9,-117.25,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_national-0217.osw,Non-CBSA East North Central,No,100-120%,6A,6A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback +3h,Not Applicable,"WI, Dane County","G5500250, G55000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,85%,"WI, 00102","In metro area, not/partially in principal city",None,None,No,Hour18,78,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Madison Dane Co Regional Arpt,43.13,-89.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0218.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, West Palm Beach",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback,Not Applicable,"FL, Palm Beach County","G1200990, G12009903",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,None,Brick,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 09903","In metro area, not/partially in principal city",None,None,No,Hour0,102,EF 15.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Outside,West Palm Beach Intl Arpt,26.68,-80.1,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0219.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour5,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"FL, Indian River County","G1200610, G12006100",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",1,1,<8,None,Brick,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,200%,106%,"FL, 06100","In metro area, not/partially in principal city",None,None,No,Hour11,102,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Vero Beach Municipal Arpt,27.65,-80.42,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0220.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour0,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"GA, DeKalb County","G1300890, G13002003",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,6F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,50%,106%,"GA, 02003","In metro area, not/partially in principal city",None,None,No,Hour18,94,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Dekalb Peachtree,33.87,-84.3,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0221.osw,Non-CBSA Pacific,No,150%+,4C,4C,Hour6,None,4,Marine,None,Standard Efficiency,Pacific,Pacific,West,"OR, Portland",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"OR, Multnomah County","G4100510, G41001314",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR06,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,West,None,100%,94%,"OR, 01314","In metro area, not/partially in principal city",None,None,No,Hour13,5,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Portland International Ap,45.6,-122.62,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0222.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour3,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"MI, Macomb County","G2600990, G26003004",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Brick,No,Natural Gas,67F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,85%,"MI, 03004","In metro area, not/partially in principal city",None,None,No,Hour5,103,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Mount Clemens Selfridge Fld,42.62,-82.83,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0223.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour3,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Brandon",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"FL, Hillsborough County","G1200570, G12005707",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,106%,"FL, 05707","In metro area, not/partially in principal city",None,None,No,Hour10,101,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Attic,Tampa International Ap,27.97,-82.53,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0224.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,100-120%,2A,"2A - FL, GA, AL, MS",Hour20,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,No,0F,None,Not Applicable,"FL, Palm Beach County","G1200990, G12009906",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,50%,106%,"FL, 09906","In metro area, not/partially in principal city",None,None,No,Hour8,102,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Garage,West Palm Beach Intl Arpt,26.68,-80.1,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0225.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour5,None,5,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"NC, Durham",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"NC, Durham County","G3700630, G37001301",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,200%,106%,"NC, 01301","In metro area, not/partially in principal city",None,None,No,Hour18,98,EF 17.6,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Raleigh Durham International,35.87,-78.78,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0226.osw,Non-CBSA West South Central,No,120-150%,3A,3A,Hour3,None,3,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Oklahoma City",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,No,0F,None,Not Applicable,"OK, Oklahoma County","G4001090, G40001002",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,113%,"OK, 01002","In metro area, not/partially in principal city",None,None,No,Hour17,50,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Outside,Oklahoma City Wiley,35.53,-97.65,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0227.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour5,None,5,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,70F,Yes,2F,Night Setback +2h,Not Applicable,"SC, Beaufort County","G4500130, G45001400",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,8 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,200%,106%,"SC, 01400","In metro area, not/partially in principal city",None,None,No,Hour18,96,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Beaufort Mcas,32.48,-80.72,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0228.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour22,None,5,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"GA, Forsyth County","G1301170, G13003300",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,3 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,106%,"GA, 03300","In metro area, not/partially in principal city",None,None,No,Hour16,94,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Dekalb Peachtree,33.87,-84.3,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
-project_national-0229.osw,Non-CBSA South Atlantic,No,100-120%,4A,4A,Hour9,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Not Applicable,"WV, Kanawha County","G5400390, G54001000",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,40 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"WV, 01000","In metro area, not/partially in principal city",None,None,No,Hour17,117,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WV,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Charleston Yeager Arpt,38.38,-81.58,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0230.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -2h,Not Applicable,"NJ, Essex County","G3400130, G34001402",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,101%,"NJ, 01402","In metro area, not/partially in principal city",None,None,No,Hour18,126,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Newark International Arpt,40.72,-74.18,F6 B6 L6 R6,"Single, Clear, Non-metal"
-project_national-0231.osw,Non-CBSA Mountain,No,120-150%,4B,4B,Hour23,None,5,Mixed-Dry,None,None,Mountain,Mountain South,West,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"AZ, Yavapai County","G0400250, G04000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,5 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,84%,"AZ, 00500","In metro area, not/partially in principal city",None,None,No,Hour11,28,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Prescott Love Field,34.65,-112.42,F15 B15 L15 R15,"Double, Clear, Metal, Air"
-project_national-0232.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,150%+,4A,4A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"PA, Bucks County","G4200170, G42003004",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,None,Brick,No,Fuel Oil,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,120000-139999,120000-139999,100000-149999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,101%,"PA, 03004","In metro area, not/partially in principal city",None,None,No,Hour15,122,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Heated Basement,Willow Grove Nas,40.2,-75.15,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_national-0233.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour21,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"CO, Denver",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"CO, Denver County","G0800310, G08000812",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,91%,"CO, 00812","In metro area, principal city",None,None,No,Hour20,33,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Aurora Buckley Field Angb,39.72,-104.75,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0234.osw,Non-CBSA West North Central,No,0-30%,4A,4A,Hour2,None,3,Mixed-Humid,None,None,West North Central,West North Central,Midwest,"MO, St Louis",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,2F,Night Setback -4h,Not Applicable,"MO, St. Louis city","G2905100, G29001901",None,None,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,6F,Night -2h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,North,None,200%,95%,"MO, 01901","In metro area, principal city",None,None,No,Hour16,72,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Cahokia St Louis,38.57,-90.15,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_national-0235.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,150%+,1A,1A,Hour19,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Fort Lauderdale",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,No,0F,None,Not Applicable,"FL, Broward County","G1200110, G12001108",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"FL, 01108","In metro area, not/partially in principal city",None,None,No,Hour10,102,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Tankless,Electricity,Yes,Living Space,Fort Lauderdale,26.2,-80.17,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0236.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour3,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Propane,100% Usage,75F,No,0F,None,Not Applicable,"FL, Lee County","G1200710, G12007101",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Unvented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,106%,"FL, 07101","In metro area, not/partially in principal city",None,None,No,Hour5,101,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Fort Myers Page Field,26.58,-81.87,F15 B15 L15 R15,"Single, Clear, Metal"
-project_national-0237.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, St Petersburg",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"FL, Pinellas County","G1201030, G12010307",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,106%,"FL, 10307","In metro area, principal city",None,None,No,Hour8,101,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,St Petersburg Clear,27.9,-82.68,F6 B6 L6 R6,"Single, Clear, Non-metal"
-project_national-0238.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour17,None,3,Marine,5,None,Pacific,Pacific,West,In another census Place,Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,80F,No,0F,None,Not Applicable,"CA, San Luis Obispo County","G0600790, G06007901",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Southeast,None,50%,94%,"CA, 07901","In metro area, not/partially in principal city",None,None,No,Hour6,9,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,San Luis Co Rgnl,35.23,-120.63,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_national-0239.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour0,None,2,Mixed-Humid,None,None,West North Central,West North Central,Midwest,"MO, St Louis",Gas,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"MO, St. Louis city","G2905100, G29001902",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,75F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,95%,"MO, 01902","In metro area, principal city",None,None,No,Hour16,72,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Cahokia St Louis,38.57,-90.15,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0240.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IN, Lafayette",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"IN, Tippecanoe County","G1801570, G18001200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,12F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,85%,"IN, 01200","In metro area, not/partially in principal city",None,None,No,Hour15,105,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Lafayette Purdue Univ Ap,40.42,-86.93,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0241.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour1,None,2,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback -2h,Not Applicable,"FL, Brevard County","G1200090, G12000901",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-19,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,Electricity,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"FL, 00901","In metro area, not/partially in principal city",None,None,No,Hour14,102,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Melbourne Regional Ap,28.12,-80.65,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0242.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"GA, Columbus",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,68F,Yes,5F,Night Setback -2h,Not Applicable,"GA, Muscogee County","G1302150, G13001700",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,106%,"GA, 01700","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Living Space,Columbus Metropolitan Arpt,32.52,-84.95,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0243.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour20,None,3,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -5h,Not Applicable,"MI, Oakland County","G2601250, G26002908",None,None,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,85%,"MI, 02908","In metro area, not/partially in principal city",None,None,No,Hour18,103,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Oakland Co Intl,42.67,-83.42,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
-project_national-0244.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour3,None,3,Cold,None,None,East North Central,East North Central,Midwest,"WI, Oshkosh",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"WI, Winnebago County","G5501390, G55001501",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,25 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,EF 17.6,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,85%,"WI, 01501","In metro area, not/partially in principal city",None,None,No,Hour8,76,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Wittman Rgnl,43.98,-88.55,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_national-0245.osw,Non-CBSA New England,No,150%+,5A,5A,Hour4,None,5,Cold,None,Standard Efficiency,New England,New England,Northeast,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setup +4h,Not Applicable,"MA, Barnstable County","G2500010, G25004700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,99%,"MA, 04700","In metro area, not/partially in principal city",None,None,No,Hour18,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Barnstable Muni Boa,41.67,-70.28,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0246.osw,Non-CBSA East North Central,No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,None,East North Central,East North Central,Midwest,"IN, Evansville",Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"IN, Vanderburgh County","G1801630, G18003300",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,200%,85%,"IN, 03300","In metro area, not/partially in principal city",None,None,No,Hour16,107,EF 19.9,105% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,IN,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Evansville Regional Ap,38.05,-87.53,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_national-0247.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour16,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,80F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003748",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,200%,94%,"CA, 03748","In metro area, not/partially in principal city",None,None,No,Hour14,10,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_national-0248.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour19,None,3,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"CO, Greeley",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"CO, Weld County","G0801230, G08000300",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,3 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,91%,"CO, 00300","In metro area, not/partially in principal city",None,None,No,Hour9,33,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CO,Owner,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Greeley Weld Awos,40.43,-104.63,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_national-0249.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour0,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Franklin",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +3h,Not Applicable,"TN, Williamson County","G4701870, G47002600",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"TN, 02600","In metro area, not/partially in principal city",None,None,No,Hour12,92,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Medium,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Nashville International Ap,36.12,-86.68,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_national-0250.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,Yes,9F,Night Setback +2h,Double-Loaded Interior,"NY, New York County","G3600610, G36003807",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1000-1499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",8,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,East,None,200%,89%,"NY, 03807","In metro area, principal city",None,None,None,Hour19,127,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air"
-project_testing-0001.osw,,,,5A,,Hour4,"20 kWh, 80% Round Trip Efficiency",1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,120% Usage,None,None,100% Usage,Gas,80% Usage,78F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,40 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Other Fuel,73F,No,0F,None,None,R-2,200% Usage,,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,No,None,None,None,None,,,,5 ACH50,None,None,None,None,"Finished, R-49","2ft R5 Perimeter, Vertical","Brick, 12-in, 3-wythe, R-11","Summer = 0.5, Winter = 0.7",,None,None,None,,"HRV, 60%",EF 21.9,None,None,None,Gas Lighting,None,Has Pool,Natural Gas,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",None,0,Northwest,"2ft, Right Windows",50%,84%,,,None,None,None,Hour8,80,EF 15.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,FIXME Fuel Oil Indirect,,,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0002.osw,,,,2A,,Hour21,None,3,,,Premium Efficiency,,,South,,Propane,80% Usage,Standard,Yes,100% Usage,Electric Induction,80% Usage,77F,No,0F,None,None,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,Yes,Natural Gas,55F,No,0F,None,No Exterior Use,R-2,100% Usage,,"Room AC, EER 9.8",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,<10% Conditioned,None,No,None,None,None,None,,,,30 ACH50,None,None,None,None,"Finished, R-7","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 10.5,None,Gas Fireplace,None,Gas Lighting,None,None,None,None,National Average,None,27,0,NNE,"2ft, Left Windows",75%,97%,,,Northeast,5.0 kWDC,None,Hour6,67,EF 10.5,100% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Electric Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Clear, Non-metal, Air"
-project_testing-0003.osw,,,,5A,,Hour18,"20 kWh, Outside",2,,,"Standard Efficiency, No usage",,,Midwest,,Gas,120% Usage,None,None,120% Usage,None,80% Usage,69F,Yes,5F,Night Setback,Double-Loaded Interior,"IL, Cook County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Wood,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",20,4+,8+,"Vinyl, Light",Concrete,No,Fuel Oil,72F,Yes,6F,Day and Night +2h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,None,Yes,700.2 cfm/ton,0.570 Charge Frac,254.0 cfm/ton,0.988 Charge Frac,,,,11.25 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-7","Summer = 0.5, Winter = 0.7",,100% CFL,95% Usage,95% Usage,,None,EF 21.9,None,Gas Fireplace,Gas Grill,National Average,Electricity,None,None,None,Typical Efficiency,None,27,0,WNW,"2ft, Front Windows",100%,85%,,,None,None,None,Hour17,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,Chicago Midway Ap,41.78,-87.75,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0004.osw,,,,5A,,Hour0,10 kWh,5,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,None,100% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Day Setup -4h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",None,100% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,65F,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,Non-Ducted Heat Pump,60% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 14.5, 8.2 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,Yes,551.5 cfm/ton,0.709 Charge Frac,551.5 cfm/ton,1.266 Charge Frac,,,,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-19","Summer = 0.7, Winter = 0.95",,20% LED,95% Usage,100% Usage,,None,None,None,None,National Average,None,Natural Gas,None,None,None,None,"Cooling Season, 7 days/wk",4,0,SSE,"2ft, Left Windows",50%,103%,,,None,None,None,Hour15,80,EF 19.9,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Double, Clear, Metal, Air"
-project_testing-0005.osw,,,,5A,,Hour12,10 kWh,2,,,None,,,Midwest,,Propane,120% Usage,Standard,Yes,80% Usage,None,100% Usage,73F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unvented Crawlspace,None,"Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage",3,3,<8,"Wood, Medium/Dark",Steel Frame,Yes,None,68F,No,0F,None,None,R-2,"100% Usage, Low Flow",,"Room AC, EER 9.8",80% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,15 ACH50,Uninsulated,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.6, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 10.2,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,None,None,None,None,None,High Efficiency,None,12,4,NNW,"2ft, Left Windows",400%,96%,,,West,11.0 kWDC,No,Hour22,80,None,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Electric Standard,,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0006.osw,,,,3B,,Hour23,"20 kWh, Outside",3,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,100% Usage,None,120% Usage,75F,No,0F,None,Double Exterior,"CA, Los Angeles County",,None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Crawlspace,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Bottom,9,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Vented Crawlspace,None,"Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,64F,Yes,12F,Day and Night,No Exterior Use,Uninsulated,100% Usage,,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,None,Yes,501.9 cfm/ton,0.709 Charge Frac,154.8 cfm/ton,0.709 Charge Frac,,,,0.25 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 6.7,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,None,National Average,Natural Gas,Has Pool,Other Fuel,National Average,National Average,"Cooling Season, 7 days/wk",None,0,ENE,None,100%,166%,,,None,None,None,Hour18,10,EF 17.6,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_testing-0007.osw,,,,3B,,Hour7,"20 kWh, 80% Round Trip Efficiency",4,,,Standard Efficiency,,,West,,None,100% Usage,EnergyStar,Yes,100% Usage,Gas,80% Usage,65F,No,0F,None,Double Exterior,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,20 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Stucco, Light",Steel Frame,Yes,Electricity,62F,Yes,3F,Day and Night,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"Room AC, EER 9.8",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Electricity",Yes,452.3 cfm/ton,1.127 Charge Frac,303.5 cfm/ton,1.266 Charge Frac,,,,5.25 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,Supply,EF 10.2,"EF 18, 2008 Energy Star",None,None,None,Electricity,Has Pool,Other Fuel,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",None,0,South,"2ft, Back Windows",100%,82%,,,Southeast,9.0 kWDC,None,Hour17,10,EF 10.5,105% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,None,CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Tankless,,,Living Space,Jack Northrop Fld H,33.92,-118.33,None,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0008.osw,,,,4A,,Hour1,"20 kWh, Outside",2,,,Standard Efficiency,,,Northeast,,Propane,100% Usage,EnergyStar,Yes,120% Usage,Electric Induction,100% Usage,65F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",11,4+,8+,"Wood, Medium/Dark",Brick,Yes,Propane,76F,No,0F,None,No Exterior Use,"R-5, Timer",50% Usage,,Shared Cooling,40% Conditioned,Central AC,Yes,Cooling Only,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Propane Fuel Furnace,"Electric Portable Heater, 100% Efficiency",Electricity,<10% Conditioned,Fan Coil Cooling Only,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Ceiling R-30,"Wall R-13, Interior","R-13, Interior","Finished, R-30",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 10.2,"EF 12, National Average",National Average,National Average,National Average,None,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",27,3,WNW,"2ft, All Windows",75%,110%,,,Northeast,3.0 kWDC,None,Hour17,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Electric Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0009.osw,,,,2A,,Hour0,10 kWh,2,,,None,,,South,,None,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,77F,Yes,9F,Night Setback +2h,Not Applicable,"TX, Harris County",,None,318 Rated kWh,80% Usage,40 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Unvented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,Yes,Electricity,66F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,Ducted Heat Pump,80% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,None,No,None,None,None,None,,,,20 ACH50,Uninsulated,None,None,None,"Unfinished, Uninsulated","R10 Whole Slab, Horizontal","Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 15.9,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,National Average,Natural Gas,None,None,None,None,None,4,10+,Southwest,"2ft, Front Windows",25%,82%,,,East,1.0 kWDC,No,Hour14,67,EF 21.9,105% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Propane Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Clear, Non-metal, Air"
-project_testing-0010.osw,,,,2A,,Hour7,10 kWh,5,,,"Standard Efficiency, No usage",,,South,,Propane,100% Usage,EnergyStar,Yes,120% Usage,Gas,80% Usage,76F w/ Building America season,Yes,5F,Day and Night Setup,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Shingle, Composition, Medium",Brick,Yes,Natural Gas,66F,Yes,12F,Day and Night -2h,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,"Room AC, EER 8.5",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.5 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.95",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 17.6,"EF 18, 2008 Energy Star",None,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,National Average,None,None,8,SSW,"2ft, All Windows",150%,94%,,,Southwest,1.0 kWDC,None,Hour16,67,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Electric Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Single, Clear, Metal"
-project_testing-0011.osw,,,,4A,,Hour11,None,2,,,"Standard Efficiency, No usage",,,Northeast,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",13,4+,8+,"Brick, Light",Steel Frame,Yes,Other Fuel,69F,Yes,12F,Night +4h,None,"R-2, Timer","50% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Electric Baseboard, 100% Efficiency",Electricity,40% Conditioned,None,Yes,402.7 cfm/ton,0.848 Charge Frac,650.6 cfm/ton,0.570 Charge Frac,,,,30 ACH50,None,None,None,None,"Finished, R-30","4ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,None,None,None,,"HRV, 60%",EF 17.6,"EF 18, 2008 Energy Star",None,None,Gas Lighting,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",27,0,WSW,"2ft, Left Windows",25%,79%,,,Southeast,5.0 kWDC,None,Hour16,127,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Single, Clear, Metal"
-project_testing-0012.osw,,,,2A,,Hour22,"20 kWh, 80% Round Trip Efficiency",2,,,Premium Efficiency,,,South,,Electric,100% Usage,None,None,100% Usage,None,80% Usage,76F w/ Building America season,No,0F,None,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,80% Usage,30 ft^2,Wood,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,3000-3999,2500-3999,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",6,4+,<8,"Aluminum, Light",Concrete,Yes,Fuel Oil,64F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,20% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,6 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.95",,100% Incandescent,100% Usage,100% Usage,,Exhaust,EF 15.9,"EF 18, 2008 Energy Star",National Average,Gas Grill,National Average,Other Fuel,None,None,None,None,None,7,0,WNW,"2ft, Left Windows",75%,100%,,,Southwest,11.0 kWDC,None,Hour19,67,EF 6.7,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Fuel Oil Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Single, Clear, Non-metal"
-project_testing-0013.osw,,,,2A,,Hour19,None,5,,,"Standard Efficiency, 0.5F Offset",,,South,,Propane,80% Usage,None,None,100% Usage,Propane,100% Usage,77F,Yes,9F,Day Setup +5h,Single Exterior Front,"TX, Harris County",,None,None,100% Usage,30 ft^2,Wood,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Brick,No,Natural Gas,66F,No,0F,None,No Exterior Use,"R-2, Demand","200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,18.5 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,95% Usage,,Exhaust,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",National Average,None,None,None,Has Pool,Other Fuel,National Average,None,"Cooling Season, 7 days/wk",27,0,NNE,"2ft, Back Windows",100%,108%,,,None,None,None,Hour11,67,EF 17.6,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Natural Gas Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_testing-0014.osw,,,,5A,,Hour18,None,4,,,Premium Efficiency,,,Midwest,,Electric,80% Usage,None,None,80% Usage,Gas,80% Usage,77F,Yes,5F,Day Setup -3h,Double Exterior,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",9,4+,8+,"Shingle, Asbestos, Medium",Brick,No,Propane,78F,No,0F,None,No Exterior Use,"R-5, Timer","100% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,Yes,601.0 cfm/ton,1.127 Charge Frac,204.4 cfm/ton,0.988 Charge Frac,,,,4 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,100% Usage,,None,None,None,None,None,Gas Lighting,None,Has Pool,Electricity,0.75 HP Pump,National Average,None,7,0,Northeast,"2ft, Back Windows",400%,105%,,,None,None,None,Hour11,80,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Electric Tankless,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0015.osw,,,,5A,,Hour20,"20 kWh, Outside",5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,120% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,62F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,20 ft^2,Wood,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,20,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",3,3,<8,"Stucco, Medium/Dark",Brick,Yes,Other Fuel,78F,No,0F,None,No Exterior Use,R-2,"200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Other Fuel Fuel Wall/Floor Furnace,None,None,None,None,Yes,601.0 cfm/ton,1.405 Charge Frac,353.1 cfm/ton,0.709 Charge Frac,,,,4 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 10.5,None,National Average,Gas Grill,None,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",4,3,East,"2ft, Left Windows",75%,89%,,,Northeast,11.0 kWDC,None,Hour21,80,EF 15.9,105% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0016.osw,,,,5A,,Hour6,10 kWh,3,,,Standard Efficiency,,,Midwest,,Propane,80% Usage,None,None,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Vented Attic,None,Right,None,None,15,Single-Family Attached,Single-Family Attached,Single-Family Attached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage",3,3,<8,"Shingle, Composition, Medium",Concrete,Yes,Natural Gas,73F,No,0F,None,No Exterior Use,"R-2, Demand","200% Usage, Low Flow",,Shared Cooling,20% Conditioned,Central AC,No,Cooling Only,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,Fan Coil Cooling Only,Yes,303.5 cfm/ton,1.405 Charge Frac,452.3 cfm/ton,1.266 Charge Frac,,,,7.5 ACH50,R-30,Ceiling R-38,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, R-7","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,Gas Lighting,Other Fuel,None,None,None,National Average,None,2,0,North,"2ft, Front Windows",75%,123%,,,Southeast,9.0 kWDC,Yes,Hour18,80,EF 17.6,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Single, Clear, Metal"
-project_testing-0017.osw,,,,3B,,Hour14,"20 kWh, 80% Round Trip Efficiency",2,,,Standard Efficiency,,,West,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,120% Usage,76F,Yes,9F,Night Setback +1h,Not Applicable,"CA, Los Angeles County",,None,318 Rated kWh,100% Usage,30 ft^2,Steel,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Vented Attic,None,Right,None,None,144,Single-Family Attached,Single-Family Attached,Single-Family Attached,0-499,0-1499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,Yes,Propane,72F,Yes,3F,Day -1h,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,Shared Cooling,20% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,50% Conditioned,"Fan Coil Heating and Cooling, Fuel",Yes,402.7 cfm/ton,0.848 Charge Frac,452.3 cfm/ton,1.266 Charge Frac,,,,5 ACH50,R-38,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.95",,100% Incandescent,100% Usage,95% Usage,,None,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,None,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",2,0,ESE,"2ft, All Windows",75%,121%,,,Southeast,11.0 kWDC,No,Hour17,10,EF 6.7,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0018.osw,,,,3B,,Hour0,None,4,,,Standard Efficiency,,,West,,Gas,100% Usage,None,None,120% Usage,Gas,80% Usage,80F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,100% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",35,4+,8+,"Shingle, Composition, Medium",Steel Frame,No,Natural Gas,66F,No,0F,None,None,"R-2, Demand",50% Usage,,"Room AC, EER 9.8",100% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,Yes,353.1 cfm/ton,0.988 Charge Frac,650.6 cfm/ton,0.988 Charge Frac,,,,20 ACH50,None,None,None,None,"Finished, Uninsulated","R10 Whole Slab, Horizontal","Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,None,None,None,,Exhaust,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",None,National Average,Gas Lighting,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",12,0,Southeast,"2ft, Left Windows",25%,96%,,,None,None,None,Hour20,10,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Electric Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0019.osw,,,,5A,,Hour19,10 kWh,3,,,Premium Efficiency,,,Midwest,,None,80% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,120% Usage,76F w/ Building America season,Yes,2F,Day and Night Setup +2h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,40 ft^2,Wood,None,None,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,12,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Attached, Unheated Basement, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,78F,Yes,3F,Night -4h,No Exterior Use,"R-5, Timer",100% Usage,,"Room AC, EER 10.7",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Electricity",Yes,254.0 cfm/ton,1.266 Charge Frac,204.4 cfm/ton,0.848 Charge Frac,,,,5 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-7",None,"Wood Stud, R-11","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,100% Usage,,Supply,EF 10.5,"EF 12, Average Installed",National Average,Gas Grill,Gas Lighting,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",4,0,West,"2ft, Right Windows",200%,95%,,,None,None,None,Hour16,80,EF 10.2,105% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,None,IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Propane Premium,,,Unheated Basement,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0020.osw,,,,2A,,Hour5,"20 kWh, 80% Round Trip Efficiency",2,,,Standard Efficiency,,,South,,Propane,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,500-749,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,"Brick, Medium/Dark",Steel Frame,Yes,None,62F,No,0F,None,No Exterior Use,"R-2, Timer",50% Usage,,"AC, SEER 10",20% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,Yes,501.9 cfm/ton,1.266 Charge Frac,551.5 cfm/ton,0.848 Charge Frac,,,,20 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,None,EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,Gas Lighting,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",7,7,SSE,None,100%,123%,,,West,13.0 kWDC,None,Hour14,67,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Premium,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0021.osw,,,,4A,,Hour1,"20 kWh, Outside",1,,,None,,,Northeast,,Gas,120% Usage,None,None,100% Usage,None,100% Usage,72F,Yes,9F,Day and Night Setup -2h,Not Applicable,"NY, New York County",,"65 pints/day, 60% RH",None,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,3000-3999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Aluminum, Light",Brick,No,Natural Gas,69F,Yes,3F,Day and Night +5h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,303.5 cfm/ton,0.570 Charge Frac,551.5 cfm/ton,0.709 Charge Frac,,,,18.5 ACH50,None,Ceiling R-38,None,None,"Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.7",,100% CFL,95% Usage,100% Usage,,None,EF 10.2,"EF 18, 2008 Energy Star",None,National Average,Gas Lighting,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",4,2,ESE,"2ft, Back Windows",50%,113%,,,None,None,None,Hour12,127,EF 19.9,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_testing-0022.osw,,,,4A,,Hour7,"20 kWh, 80% Round Trip Efficiency",4,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,100% Usage,EnergyStar,Yes,80% Usage,None,100% Usage,78F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,40 ft^2,Steel,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1500-1999,1500-2499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",35,4+,8+,"Shingle, Composition, Medium",Brick,No,Fuel Oil,67F,Yes,12F,Day and Night -5h,No Exterior Use,R-2,"200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,18.5 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,"ERV, 72%",EF 15.9,"EF 12, National Average",National Average,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,None,0,Northeast,"2ft, Back Windows",150%,104%,,,None,None,None,Hour11,127,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Electric Premium,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
-project_testing-0023.osw,,,,5A,,Hour23,"20 kWh, 80% Round Trip Efficiency",5,,,Standard Efficiency,,,Midwest,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Induction,100% Usage,70F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Heated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,60,Single-Family Attached,Single-Family Attached,Single-Family Attached,500-749,0-1499,Heated Basement,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Natural Gas,65F,Yes,6F,Day -4h,No Exterior Use,"R-2, Demand",200% Usage,,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,30% Conditioned,None,No,None,None,None,None,,,,1 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.5, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,EF 6.7,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,12,0,Southeast,"2ft, All Windows",200%,134%,,,West,5.0 kWDC,None,Hour18,80,EF 10.5,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Propane Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0024.osw,,,,2A,,Hour17,None,3,,,"Premium Efficiency, 0.5F Offset",,,South,,Gas,120% Usage,None,None,100% Usage,Electric Induction,100% Usage,75F,Yes,2F,Day and Night Setup -1h,Not Applicable,"TX, Harris County",,None,None,120% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Unheated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,500-749,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Aluminum, Light",Wood Frame,Yes,Propane,69F,Yes,3F,Day +1h,No Exterior Use,"R-2, Demand",200% Usage,,"AC, SEER 8",<10% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Propane Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,11.25 ACH50,None,Ceiling R-13,"Wall R-15, Exterior","R-15, Exterior","Finished, R-30",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,National Average,National Average,Other Fuel,Has Pool,Electricity,0.75 HP Pump,National Average,None,12,0,West,"2ft, Back Windows",50%,89%,,,East,1.0 kWDC,None,Hour17,67,EF 10.5,100% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Propane Tankless,,,Unheated Basement,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0025.osw,,,,2A,,Hour3,"20 kWh, 80% Round Trip Efficiency",1,,,Premium Efficiency,,,South,,Electric,80% Usage,EnergyStar,Yes,100% Usage,Propane,80% Usage,76F w/ Building America season,No,0F,None,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,30 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,500-749,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Concrete,No,Natural Gas,78F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Ceiling R-30,None,None,"Finished, Uninsulated",None,"CMU, 6-in Hollow, R-19","Summer = 0.6, Winter = 0.7",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Electricity,Has Pool,Other Fuel,1.0 HP Pump,None,None,None,10+,North,None,25%,99%,,,None,None,None,Hour19,67,EF 21.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Premium,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0026.osw,,,,3B,,Hour6,10 kWh,4,,,"Premium Efficiency, 0.5F Offset",,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,66F,Yes,9F,Night Setup +5h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Top,19,None,10 to 19 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",8,4+,8+,"Stucco, Light",Steel Frame,No,Other Fuel,66F,No,0F,None,No Exterior Use,"R-2, Timer",50% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,4.5 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,None,"EF 18, 2008 Energy Star",Gas Fireplace,None,None,Electricity,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",4,0,ENE,"2ft, Right Windows",25%,137%,,,None,None,None,Hour12,10,EF 10.5,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
-project_testing-0027.osw,,,,4A,,Hour19,10 kWh,2,,,Standard Efficiency,,,Northeast,,Propane,80% Usage,EnergyStar,Yes,100% Usage,Propane,100% Usage,67F,No,0F,None,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Steel,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Vinyl, Light",Concrete,Yes,Fuel Oil,55F,Yes,3F,Day -5h,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,"Room AC, EER 12.0",100% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,25 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.95",,100% LED,100% Usage,100% Usage,,Supply,EF 10.5,"EF 12, National Average",Gas Fireplace,National Average,None,None,Has Pool,Other Fuel,1.0 HP Pump,None,None,2,0,West,"2ft, Left Windows",50%,97%,,,South,11.0 kWDC,None,Hour18,127,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Propane Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0028.osw,,,,2A,,Hour6,10 kWh,1,,,Premium Efficiency,,,South,,Propane,80% Usage,None,None,100% Usage,None,100% Usage,65F,Yes,5F,Night Setback -4h,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH",318 Rated kWh,100% Usage,20 ft^2,Steel,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",15,4+,8+,"Shingle, Asbestos, Medium",Wood Frame,Yes,Fuel Oil,60F,Yes,12F,Night +2h,None,"R-2, Timer",200% Usage,,"Room AC, EER 10.7",60% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.5 ACH50,None,Ceiling R-30,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.95",,None,None,None,,"HRV, 60%",EF 19.9,None,Gas Fireplace,National Average,National Average,Electricity,Has Pool,Natural Gas,0.75 HP Pump,National Average,"Cooling Season, 7 days/wk",12,0,WSW,"2ft, Front Windows",400%,108%,,,Southeast,9.0 kWDC,None,Hour17,67,EF 21.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0029.osw,,,,2A,,Hour8,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, No usage",,,South,,None,80% Usage,EnergyStar,Yes,80% Usage,Electric Induction,80% Usage,68F,Yes,5F,Day and Night Setup -4h,Double Exterior,"TX, Harris County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,None,Brick,No,Other Fuel,70F,No,0F,None,None,"R-2, Demand","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,700.2 cfm/ton,0.709 Charge Frac,501.9 cfm/ton,1.266 Charge Frac,,,,8 ACH50,None,None,None,None,"Finished, R-19","R10 Whole Slab, Horizontal","Brick, 12-in, 3-wythe, R-15","Summer = 0.5, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,National Average,Natural Gas,Has Pool,Natural Gas,National Average,None,"Cooling Season, 7 days/wk",12,2,Southeast,None,100%,79%,,,None,None,None,Hour9,67,EF 10.5,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F18 B18 L18 R18,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0030.osw,,,,3B,,Hour13,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,West,,Electric,120% Usage,None,None,80% Usage,Electric Resistance,80% Usage,60F,Yes,2F,Night Setup -4h,None,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,1500-1999,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",14,4+,8+,"Brick, Medium/Dark",Concrete,No,Propane,80F,Yes,3F,Day and Night +5h,No Exterior Use,R-2,"200% Usage, Low Flow",,"Room AC, EER 12.0",<10% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Propane Fuel Furnace,None,None,None,None,Yes,402.7 cfm/ton,0.570 Charge Frac,700.2 cfm/ton,0.848 Charge Frac,,,,10 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-7",None,"CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 19.9,"EF 18, 2008 Energy Star",Gas Fireplace,None,National Average,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",7,9,SSE,None,50%,121%,,,None,None,None,Hour17,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Renter,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0031.osw,,,,3B,,Hour17,"20 kWh, 80% Round Trip Efficiency",3,,,None,,,West,,Gas,80% Usage,EnergyStar,Yes,80% Usage,Propane,100% Usage,80F,No,0F,None,None,"CA, Los Angeles County",,None,None,80% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Steel Frame,No,Other Fuel,64F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,"Room AC, EER 9.8",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,None,EF 19.9,"EF 12, National Average",National Average,National Average,Gas Lighting,Other Fuel,None,None,None,None,None,None,0,SSE,"2ft, Front Windows",200%,86%,,,None,None,None,Hour19,10,EF 10.5,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0032.osw,,,,4A,,Hour5,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,Northeast,,Electric,80% Usage,None,None,120% Usage,Gas,80% Usage,69F,Yes,5F,Day Setup and Night Setback,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,40 ft^2,Steel,"30% Leakage to Outside, R-4",Unheated Basement,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Bottom,8,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Shingle, Asbestos, Medium",Steel Frame,No,Fuel Oil,75F,No,0F,None,No Exterior Use,R-2,50% Usage,,Shared Cooling,60% Conditioned,Central AC,Yes,Cooling Only,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,50% Conditioned,Fan Coil Cooling Only,Yes,452.3 cfm/ton,1.266 Charge Frac,700.2 cfm/ton,0.709 Charge Frac,,,,7 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-49",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,None,EF 10.2,"EF 12, National Average",Gas Fireplace,Gas Grill,Gas Lighting,Natural Gas,Has Pool,Electricity,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",4,7,WNW,None,150%,140%,,,None,None,None,Hour12,127,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Natural Gas Standard,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0033.osw,,,,4A,,Hour1,"20 kWh, Outside",3,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,80% Usage,65F,No,0F,None,Not Applicable,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,3000-3999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Wood Frame,No,Fuel Oil,76F,Yes,12F,Day and Night +1h,No Exterior Use,"R-2, Timer","50% Usage, Low Flow",,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,Yes,650.6 cfm/ton,0.848 Charge Frac,154.8 cfm/ton,0.570 Charge Frac,,,,7 ACH50,None,Uninsulated,None,None,"Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 17.6,"EF 12, Average Installed",None,Gas Grill,None,Natural Gas,None,None,None,High Efficiency,None,7,0,ESE,"2ft, Back Windows",400%,96%,,,None,None,None,Hour10,127,EF 6.7,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Single, Clear, Non-metal"
-project_testing-0034.osw,,,,5A,,Hour18,"20 kWh, 80% Round Trip Efficiency",5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Gas,120% Usage,None,None,120% Usage,None,80% Usage,66F,Yes,9F,Night Setup -3h,None,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",7,4+,<8,"Wood, Medium/Dark",Steel Frame,Yes,None,69F,Yes,3F,Night +5h,No Exterior Use,R-2,"100% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,650.6 cfm/ton,0.709 Charge Frac,254.0 cfm/ton,0.709 Charge Frac,,,,40 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,None,EF 21.9,"EF 12, National Average",Gas Fireplace,Gas Grill,National Average,Other Fuel,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",None,3,SSW,None,200%,144%,,,Southwest,3.0 kWDC,None,Hour7,80,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Single, Clear, Non-metal"
-project_testing-0035.osw,,,,5A,,Hour3,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,75F,Yes,9F,Night Setup +3h,Double-Loaded Interior,"IL, Cook County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,30 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",5,4+,<8,"Stucco, Medium/Dark",Wood Frame,No,None,63F,No,0F,None,No Exterior Use,Uninsulated,"100% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,303.5 cfm/ton,0.988 Charge Frac,650.6 cfm/ton,0.988 Charge Frac,,,,5 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,None,"EF 12, Average Installed",None,Gas Grill,None,Electricity,None,None,None,National Average,None,4,8,East,"2ft, All Windows",25%,95%,,,None,None,None,Hour17,80,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Propane Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_testing-0036.osw,,,,3B,,Hour4,"20 kWh, 80% Round Trip Efficiency",1,,,"Premium Efficiency, 0.5F Offset",,,West,,Gas,120% Usage,None,None,80% Usage,Propane,100% Usage,76F,Yes,2F,Day Setup and Night Setback +2h,None,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Fiberglass,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Left,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Concrete,Yes,None,72F,Yes,6F,Day and Night +3h,No Exterior Use,"R-2, Timer",200% Usage,,None,None,None,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,4 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,None,None,None,None,None,Gas Lighting,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",12,1,WNW,"2ft, Right Windows",400%,95%,,,North,3.0 kWDC,None,Hour7,10,None,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Owner,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Electric Premium,,,Unheated Basement,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0037.osw,,,,2A,,Hour4,None,1,,,"Standard Efficiency, No usage",,,South,,Gas,100% Usage,None,None,120% Usage,Propane,100% Usage,69F,Yes,5F,Night Setback +4h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,30 ft^2,Wood,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Ambient,None,"Single-Family Detached, Ambient, Unvented Attic, No Garage",2,2,<8,"Stucco, Medium/Dark",Concrete,Yes,Other Fuel,71F,No,0F,None,No Exterior Use,R-2,"200% Usage, Low Flow",,"Room AC, EER 9.8",100% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Other Fuel Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,30 ACH50,Uninsulated,Ceiling R-19,None,None,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, R-11","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,100% Usage,,Supply,EF 10.2,"EF 18, 2008 Energy Star",National Average,Gas Grill,None,Natural Gas,None,None,None,National Average,None,12,0,ESE,"2ft, Front Windows",400%,119%,,,Northwest,13.0 kWDC,Yes,Hour17,67,EF 10.5,100% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Natural Gas Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F18 B18 L18 R18,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0038.osw,,,,5A,,Hour22,10 kWh,1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,100% Usage,None,None,100% Usage,Propane,80% Usage,80F,No,0F,None,None,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",15,4+,8+,"Stucco, Medium/Dark",Wood Frame,No,Fuel Oil,70F,No,0F,None,None,Uninsulated,"50% Usage, Low Flow",,"AC, SEER 13",100% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,700.2 cfm/ton,0.848 Charge Frac,154.8 cfm/ton,0.570 Charge Frac,,,,0.75 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,None,None,None,,Supply,EF 10.5,"EF 12, National Average",Gas Fireplace,Gas Grill,None,Electricity,None,None,None,High Efficiency,None,4,5,SSW,"2ft, Front Windows",25%,95%,,,None,None,None,Hour15,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Fuel Oil Premium,,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Metal, Air"
-project_testing-0039.osw,,,,3B,,Hour14,"20 kWh, Outside",2,,,"Standard Efficiency, 0.5F Offset",,,West,,None,80% Usage,Standard,Yes,100% Usage,Propane,120% Usage,67F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",9,4+,8+,"Vinyl, Light",Concrete,No,None,71F w/ Building America season,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,Shared Cooling,40% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,No,None,None,None,None,,,,1.5 ACH50,None,None,None,None,"Finished, R-7","2ft R10 Under, Horizontal","CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,95% Usage,,"HRV, 60%",EF 10.2,None,None,National Average,Gas Lighting,Electricity,Has Pool,None,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",2,0,NNW,"2ft, Front Windows",75%,84%,,,None,None,None,Hour6,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0040.osw,,,,2A,,Hour3,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,South,,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,100% Usage,62F,Yes,2F,Day Setup and Night Setback -1h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Attic,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",2,2,<8,"Stucco, Medium/Dark",Steel Frame,No,Other Fuel,80F,Yes,12F,Night -1h,No Exterior Use,Uninsulated,100% Usage,,None,None,None,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Other Fuel Fuel Furnace,None,None,None,None,No,None,None,None,None,,,,25 ACH50,R-49,Ceiling R-19,None,None,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,Supply,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,None,None,Natural Gas,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",27,9,ENE,"2ft, Right Windows",75%,134%,,,None,None,Yes,Hour12,67,EF 10.2,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F10 B30 L10 R10,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0041.osw,,,,3B,,Hour22,"20 kWh, Outside",5,,,"Standard Efficiency, No usage",,,West,,Electric,120% Usage,None,None,120% Usage,None,120% Usage,64F,Yes,9F,Night Setup -5h,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,100% Usage,30 ft^2,Wood,"30% Leakage to Outside, R-4",Crawlspace,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage",3,3,<8,"Shingle, Asbestos, Medium",Concrete,Yes,Propane,60F,No,0F,None,No Exterior Use,"R-2, Timer",200% Usage,,"AC, SEER 8",<10% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Propane Fuel Furnace,"Electric Portable Heater, 100% Efficiency",Electricity,40% Conditioned,None,No,None,None,None,None,,,,3.75 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,Supply,EF 6.7,"EF 12, National Average",None,National Average,National Average,Electricity,Has Pool,None,0.75 HP Pump,National Average,None,2,1,NNE,"2ft, Front Windows",400%,104%,,,West,13.0 kWDC,None,Hour17,10,EF 17.6,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Owner,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Electric Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0042.osw,,,,4A,,Hour0,"20 kWh, Outside",2,,,"Standard Efficiency, No usage",,,Northeast,,Propane,120% Usage,None,None,100% Usage,Propane,100% Usage,74F,No,0F,None,Not Applicable,"NY, New York County",,None,None,100% Usage,20 ft^2,Steel,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,750-999,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,None,Brick,No,Fuel Oil,67F,Yes,12F,Day -5h,No Exterior Use,"R-5, Timer",200% Usage,,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Fuel Oil Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,650.6 cfm/ton,1.266 Charge Frac,700.2 cfm/ton,1.266 Charge Frac,,,,3 ACH50,None,Ceiling R-30,None,None,"Finished, R-49",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,"HRV, 60%",None,"EF 12, Average Installed",Gas Fireplace,National Average,None,Electricity,None,None,None,None,None,2,2,South,"2ft, Left Windows",150%,86%,,,None,None,None,Hour14,127,EF 10.2,95% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0043.osw,,,,4A,,Hour5,10 kWh,2,,,None,,,Northeast,,None,80% Usage,Standard,Yes,120% Usage,Propane,120% Usage,69F,Yes,9F,Night Setup -1h,Single Exterior Front,"NY, New York County",,None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Stucco, Medium/Dark",Brick,Yes,Electricity,63F,Yes,6F,Day +1h,No Exterior Use,Uninsulated,100% Usage,,Non-Ducted Heat Pump,80% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 14.5, 8.2 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Propane,30% Conditioned,None,Yes,700.2 cfm/ton,0.848 Charge Frac,254.0 cfm/ton,1.127 Charge Frac,,,,3 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,Exhaust,EF 10.2,None,National Average,Gas Grill,National Average,None,Has Pool,Other Fuel,National Average,National Average,None,None,4,South,None,150%,91%,,,South,5.0 kWDC,None,Hour16,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Electric Tankless,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_testing-0044.osw,,,,5A,,Hour5,10 kWh,1,,,None,,,Midwest,,None,80% Usage,Standard,Yes,120% Usage,Propane,100% Usage,68F,Yes,2F,Day and Night Setup +4h,Double Exterior,"IL, Cook County",,None,None,120% Usage,30 ft^2,Wood,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",7,4+,<8,"Shingle, Asbestos, Medium",Brick,No,Natural Gas,71F,No,0F,None,None,Uninsulated,"100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,501.9 cfm/ton,1.405 Charge Frac,501.9 cfm/ton,0.570 Charge Frac,,,,4.5 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.5, Winter = 0.95",,None,None,None,,"ERV, 72%",EF 6.7,"EF 20, 2008 Energy Star Most Efficient",National Average,None,National Average,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",27,2,NNW,"2ft, Left Windows",25%,121%,,,None,None,None,Hour13,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Propane Standard,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Single, Clear, Non-metal"
-project_testing-0045.osw,,,,2A,,Hour16,None,5,,,"Standard Efficiency, No usage",,,South,,Gas,120% Usage,None,None,120% Usage,None,100% Usage,73F,No,0F,None,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,120% Usage,20 ft^2,Wood,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage",3,3,<8,"Aluminum, Light",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,R-2,100% Usage,,"Room AC, EER 8.5",20% Conditioned,Room AC,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,3 ACH50,None,Ceiling R-13,"Wall R-15, Exterior","R-15, Exterior","Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,"HRV, 60%",EF 10.5,"EF 20, 2008 Energy Star Most Efficient",None,None,Gas Lighting,Natural Gas,None,None,None,High Efficiency,None,27,6,West,"2ft, Front Windows",150%,166%,,,None,None,None,Hour8,67,None,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0046.osw,,,,4A,,Hour1,"20 kWh, 80% Round Trip Efficiency",5,,,None,,,Northeast,,Propane,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,80F,No,0F,None,Single Exterior Front,"NY, New York County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,20 ft^2,Wood,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Attached,Multi-Family with 5+ Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",12,4+,8+,"Vinyl, Light",Wood Frame,Yes,Natural Gas,72F,Yes,12F,Night -5h,No Exterior Use,"R-2, Demand","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,353.1 cfm/ton,1.127 Charge Frac,303.5 cfm/ton,1.127 Charge Frac,,,,6 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,Supply,EF 15.9,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,National Average,Gas Lighting,Electricity,Has Pool,Natural Gas,1.0 HP Pump,None,None,12,4,North,"2ft, All Windows",75%,140%,,,Northwest,11.0 kWDC,None,Hour19,127,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0047.osw,,,,4A,,Hour10,None,2,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,None,80% Usage,None,None,100% Usage,Electric Resistance,120% Usage,64F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,"Shingle, Composition, Medium",Brick,No,Other Fuel,80F,Yes,12F,Day -3h,No Exterior Use,R-2,"50% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,353.1 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.405 Charge Frac,,,,5.25 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.5, Winter = 0.95",,100% CFL,100% Usage,95% Usage,,Exhaust,None,"EF 12, Average Installed",National Average,National Average,Gas Lighting,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",2,8,SSE,"2ft, Left Windows",25%,78%,,,None,None,None,Hour19,127,EF 15.9,105% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0048.osw,,,,2A,,Hour4,10 kWh,5,,,"Standard Efficiency, 0.5F Offset",,,South,,Propane,80% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,74F,Yes,5F,Day Setup and Night Setback -4h,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,100% Usage,30 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",15,4+,8+,"Aluminum, Light",Concrete,Yes,Propane,71F w/ Building America season,Yes,12F,Day and Night +4h,No Exterior Use,"R-2, Demand",200% Usage,,None,None,None,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,650.6 cfm/ton,0.988 Charge Frac,303.5 cfm/ton,1.405 Charge Frac,,,,7 ACH50,None,Ceiling R-19,"Wall R-5, Exterior","R-5, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-19","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,95% Usage,,Supply,EF 17.6,"EF 18, 2008 Energy Star",National Average,National Average,None,Other Fuel,None,None,None,None,None,2,7,WSW,"2ft, Back Windows",400%,119%,,,North,1.0 kWDC,None,Hour21,67,EF 15.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Electric Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0049.osw,,,,3B,,Hour21,"20 kWh, Outside",1,,,"Standard Efficiency, No usage",,,West,,Gas,120% Usage,None,None,80% Usage,None,120% Usage,60F,Yes,5F,Day and Night Setup -3h,Not Applicable,"CA, Los Angeles County",,None,None,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,1000-1499,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Asbestos, Medium",Wood Frame,Yes,Propane,62F,No,0F,None,No Exterior Use,R-2,200% Usage,,"Room AC, EER 10.7",80% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,No,None,None,None,None,,,,8 ACH50,None,Ceiling R-30,None,None,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,None,EF 10.5,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,National Average,Natural Gas,None,None,None,Typical Efficiency,None,27,0,Southwest,"2ft, All Windows",200%,104%,,,South,11.0 kWDC,None,Hour18,10,EF 6.7,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Electric Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L0 R0,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0050.osw,,,,3B,,Hour4,"20 kWh, Outside",2,,,"Standard Efficiency, 0.5F Offset",,,West,,Propane,120% Usage,None,None,80% Usage,Electric Induction,80% Usage,66F,Yes,5F,Day Setup -2h,Double Exterior,"CA, Los Angeles County",,None,318 Rated kWh,80% Usage,30 ft^2,Steel,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,"Vinyl, Light",Brick,Yes,Propane,71F w/ Building America season,Yes,6F,Day +4h,No Exterior Use,Uninsulated,200% Usage,,"Room AC, EER 9.8",60% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.7",,20% LED,95% Usage,95% Usage,,Supply,EF 21.9,"EF 18, 2008 Energy Star",None,None,None,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,High Efficiency,None,4,0,SSW,"2ft, All Windows",75%,100%,,,North,7.0 kWDC,None,Hour18,10,EF 17.6,95% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,Jack Northrop Fld H,33.92,-118.33,None,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0051.osw,,,,4A,,Hour20,None,4,,,None,,,Northeast,,Gas,120% Usage,None,None,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double Exterior,"NY, New York County",,None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",11,4+,8+,"Brick, Light",Wood Frame,No,Electricity,75F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,"50% Usage, Low Flow",,"Room AC, EER 12.0",20% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,"Boiler Baseboards Heating Only, Electricity",No,None,None,None,None,,,,11.25 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,100% Usage,,Exhaust,EF 6.7,"EF 20, 2008 Energy Star Most Efficient",National Average,Gas Grill,National Average,Other Fuel,Has Pool,None,National Average,National Average,"Cooling Season, 7 days/wk",7,0,ESE,"2ft, Left Windows",25%,102%,,,None,None,None,Hour19,127,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
-project_testing-0052.osw,,,,4A,,Hour7,10 kWh,3,,,Premium Efficiency,,,Northeast,,None,120% Usage,None,None,100% Usage,Gas,120% Usage,74F,Yes,5F,Night Setup -2h,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Attached,Multi-Family with 5+ Units,2000-2499,1500-2499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",14,4+,8+,"Wood, Medium/Dark",Concrete,Yes,Propane,73F,No,0F,None,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-7",None,"CMU, 6-in Hollow, R-7","Summer = 0.5, Winter = 0.95",,60% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 6.7,"EF 18, 2008 Energy Star",National Average,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,2,0,Northeast,None,50%,106%,,,West,7.0 kWDC,None,Hour16,127,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0053.osw,,,,3B,,Hour0,10 kWh,3,,,"Standard Efficiency, 0.5F Offset",,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,None,80% Usage,76F,No,0F,None,Double-Loaded Interior,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,None,Concrete,No,Other Fuel,70F,Yes,12F,Day -2h,No Exterior Use,Uninsulated,100% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,1.5 ACH50,None,Ceiling R-30,"Wall R-10, Exterior","R-10, Exterior","Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,100% Usage,,Supply,EF 10.5,None,Gas Fireplace,National Average,National Average,Natural Gas,Has Pool,Natural Gas,National Average,High Efficiency,None,None,0,North,"2ft, Front Windows",50%,89%,,,None,None,None,Hour10,10,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Electric Premium,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_testing-0054.osw,,,,2A,,Hour9,"20 kWh, 80% Round Trip Efficiency",1,,,None,,,South,,Gas,120% Usage,None,None,80% Usage,Electric Induction,120% Usage,80F,Yes,9F,Night Setback -5h,Not Applicable,"TX, Harris County",,None,318 Rated kWh,80% Usage,20 ft^2,Wood,"30% Leakage to Outside, R-6",Crawlspace,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,Right,None,None,50,Single-Family Attached,Single-Family Attached,Single-Family Attached,0-499,0-1499,Unvented Crawlspace,None,"Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage",1,1,<8,None,Brick,No,None,70F,No,0F,None,No Exterior Use,"R-5, Timer",100% Usage,,"AC, SEER 8",80% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,40 ACH50,Uninsulated,Ceiling R-38,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.6, Winter = 0.7",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 10.2,"EF 20, 2008 Energy Star Most Efficient",National Average,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",None,0,NNW,"2ft, Right Windows",200%,105%,,,None,None,No,Hour11,67,EF 10.2,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,None,TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0055.osw,,,,2A,,Hour20,None,1,,,Premium Efficiency,,,South,,Gas,100% Usage,Standard,Yes,120% Usage,None,120% Usage,64F,No,0F,None,None,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",None,100% Usage,30 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",20,4+,8+,"Wood, Medium/Dark",Concrete,No,Other Fuel,64F,Yes,12F,Day and Night +2h,No Exterior Use,"R-5, Timer","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Other Fuel Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.988 Charge Frac,402.7 cfm/ton,0.709 Charge Frac,,,,10 ACH50,None,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Finished, R-7",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.7",,100% CFL,95% Usage,100% Usage,,Exhaust,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,Gas Lighting,Other Fuel,Has Pool,Natural Gas,National Average,High Efficiency,"Cooling Season, 7 days/wk",7,6,Northeast,"2ft, All Windows",200%,137%,,,None,None,None,Hour14,67,EF 17.6,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0056.osw,,,,5A,,Hour12,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, No usage",,,Midwest,,Gas,100% Usage,Standard,Yes,80% Usage,Electric Induction,80% Usage,64F,Yes,2F,Day Setup and Night Setback -5h,Double-Loaded Interior,"IL, Cook County",,None,318 Rated kWh,80% Usage,30 ft^2,Steel,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",35,4+,8+,"Stucco, Light",Concrete,No,None,65F,No,0F,None,No Exterior Use,R-2,"100% Usage, Low Flow",,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,Yes,154.8 cfm/ton,0.709 Charge Frac,353.1 cfm/ton,0.570 Charge Frac,,,,3.75 ACH50,None,Ceiling R-30,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"CMU, 6-in Hollow, R-19","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,"HRV, 60%",EF 10.5,"EF 16, 2001 Fed Standard-reference freezer",None,Gas Grill,None,Natural Gas,Has Pool,Electricity,0.75 HP Pump,None,None,2,2,ENE,"2ft, Right Windows",50%,96%,,,None,None,None,Hour0,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Electric Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Metal, Air"
-project_testing-0057.osw,,,,3B,,Hour23,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,West,,Electric,120% Usage,Standard,Yes,80% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Bottom,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Light",Concrete,Yes,Propane,74F,No,0F,None,No Exterior Use,R-2,50% Usage,,"Room AC, EER 8.5",40% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.570 Charge Frac,204.4 cfm/ton,1.127 Charge Frac,,,,4.5 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-13",None,"CMU, 6-in Hollow, R-15","Summer = 0.7, Winter = 0.7",,100% LED,95% Usage,95% Usage,,None,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",National Average,National Average,None,None,None,None,None,Typical Efficiency,None,4,0,WSW,"2ft, Right Windows",100%,101%,,,Northeast,13.0 kWDC,None,Hour18,10,EF 15.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Premium,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_testing-0058.osw,,,,4A,,Hour9,"20 kWh, Outside",5,,,Standard Efficiency,,,Northeast,,None,120% Usage,Standard,Yes,120% Usage,Propane,120% Usage,76F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,Yes,None,60F,Yes,6F,Day +3h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,254.0 cfm/ton,1.127 Charge Frac,204.4 cfm/ton,0.848 Charge Frac,,,,8 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.5, Winter = 0.95",,20% LED,100% Usage,95% Usage,,Supply,EF 15.9,"EF 18, 2008 Energy Star",Gas Fireplace,National Average,Gas Lighting,Other Fuel,Has Pool,None,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",2,0,Southeast,"2ft, Left Windows",200%,166%,,,East,13.0 kWDC,None,Hour8,127,None,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0059.osw,,,,5A,,Hour21,"20 kWh, Outside",3,,,None,,,Midwest,,Gas,100% Usage,Standard,Yes,100% Usage,Electric Induction,100% Usage,76F w/ Building America season,Yes,9F,Night Setup,Double Exterior,"IL, Cook County",,None,None,120% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Not Applicable,None,Middle,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage",3,3,<8,"Aluminum, Light",Steel Frame,No,Fuel Oil,72F,No,0F,None,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,"AC, SEER 15",20% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.709 Charge Frac,650.6 cfm/ton,0.848 Charge Frac,,,,4.5 ACH50,None,None,None,None,"Finished, R-19","4ft R5 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.7",,100% CFL,100% Usage,95% Usage,,"ERV, 72%",EF 17.6,None,Gas Fireplace,National Average,Gas Lighting,Natural Gas,None,None,None,Typical Efficiency,None,4,8,East,"2ft, All Windows",25%,100%,,,None,None,None,Hour23,80,EF 10.2,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0060.osw,,,,2A,,Hour1,None,4,,,"Standard Efficiency, 0.5F Offset",,,South,,Electric,100% Usage,None,None,100% Usage,Gas,100% Usage,64F,Yes,9F,Day and Night Setup +3h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,100% Usage,40 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,1500-1999,1500-2499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Steel Frame,No,Electricity,71F w/ Building America season,Yes,6F,Day,No Exterior Use,Uninsulated,100% Usage,,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,Yes,452.3 cfm/ton,0.570 Charge Frac,353.1 cfm/ton,1.405 Charge Frac,,,,5.25 ACH50,None,Ceiling R-13,None,None,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.7",,100% LED,100% Usage,100% Usage,,Supply,EF 6.7,"EF 12, Average Installed",None,National Average,None,Electricity,Has Pool,Natural Gas,1.0 HP Pump,None,None,27,0,NNE,"2ft, All Windows",400%,137%,,,None,None,None,Hour17,67,EF 17.6,105% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0061.osw,,,,4A,,Hour19,"20 kWh, Outside",4,,,Standard Efficiency,,,Northeast,,Electric,80% Usage,None,None,120% Usage,Electric Induction,80% Usage,62F,No,0F,None,Not Applicable,"NY, New York County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Aluminum, Light",Brick,Yes,Electricity,73F,No,0F,None,No Exterior Use,"R-2, Demand",100% Usage,,Ducted Heat Pump,60% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,Yes,254.0 cfm/ton,1.405 Charge Frac,501.9 cfm/ton,0.570 Charge Frac,,,,2 ACH50,R-60,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.6, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,None,EF 19.9,"EF 12, National Average",None,Gas Grill,Gas Lighting,Other Fuel,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",7,0,South,"2ft, All Windows",400%,91%,,,South,9.0 kWDC,Yes,Hour17,127,EF 6.7,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0062.osw,,,,4A,,Hour2,"20 kWh, Outside",5,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,None,100% Usage,None,None,80% Usage,Electric Resistance,120% Usage,68F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,30 ft^2,Steel,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Steel Frame,No,None,62F,No,0F,None,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"Room AC, EER 8.5",<10% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,Yes,254.0 cfm/ton,1.266 Charge Frac,601.0 cfm/ton,0.988 Charge Frac,,,,10 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-7",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,Supply,EF 6.7,None,Gas Fireplace,None,National Average,Electricity,None,None,None,Typical Efficiency,None,7,0,East,"2ft, Front Windows",75%,105%,,,None,None,None,Hour9,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Propane Standard,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
-project_testing-0063.osw,,,,5A,,Hour3,10 kWh,5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,100% Usage,Standard,Yes,100% Usage,Propane,100% Usage,60F,No,0F,None,Not Applicable,"IL, Cook County",,None,318 Rated kWh,100% Usage,40 ft^2,Steel,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,4000+,4000+,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Steel Frame,No,Propane,74F,Yes,6F,Day and Night -1h,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,None,None,None,None,Yes,353.1 cfm/ton,1.127 Charge Frac,501.9 cfm/ton,1.266 Charge Frac,,,,3.75 ACH50,None,Ceiling R-13,None,None,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",None,None,None,Other Fuel,Has Pool,None,National Average,High Efficiency,"Cooling Season, 7 days/wk",12,10+,South,"2ft, Left Windows",150%,101%,,,None,None,None,Hour16,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Natural Gas Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0064.osw,,,,2A,,Hour5,None,5,,,"Standard Efficiency, No usage",,,South,,Gas,100% Usage,Standard,Yes,120% Usage,Electric Resistance,80% Usage,66F,Yes,9F,Night Setback -3h,Double-Loaded Interior,"TX, Harris County",,None,290 Rated kWh,120% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,4000+,4000+,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,Yes,None,65F,No,0F,None,None,"R-5, Timer",100% Usage,,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-30,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.7",,None,None,None,,Supply,EF 21.9,None,Gas Fireplace,Gas Grill,National Average,None,Has Pool,None,1.0 HP Pump,Typical Efficiency,None,12,0,SSE,"2ft, Left Windows",25%,102%,,,Northwest,9.0 kWDC,None,Hour17,67,EF 17.6,105% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,Electric Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Single, Clear, Non-metal"
-project_testing-0065.osw,,,,4A,,Hour19,None,1,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,Gas,120% Usage,Standard,Yes,80% Usage,None,120% Usage,73F,Yes,5F,Night Setback +5h,Not Applicable,"NY, New York County",,None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Unheated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,Finished Attic or Cathedral Ceilings,None,Right,None,None,36,Single-Family Attached,Single-Family Attached,Single-Family Attached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Attached, Unheated Basement, Finished Attic, No Garage",3,3,<8,"Brick, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,50 ACH50,None,Ceiling R-38,"Wall R-15, Exterior","R-15, Exterior","Finished, R-38",None,"CMU, 6-in Hollow, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,95% Usage,,"ERV, 72%",EF 21.9,None,None,None,None,Natural Gas,Has Pool,None,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",None,4,WNW,None,75%,97%,,,None,None,None,Hour15,127,EF 6.7,100% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Fuel Oil Premium,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Metal"
-project_testing-0066.osw,,,,2A,,Hour8,"20 kWh, Outside",1,,,Standard Efficiency,,,South,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Left,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Wood Frame,Yes,None,76F,Yes,6F,Day -1h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,Yes,204.4 cfm/ton,1.127 Charge Frac,601.0 cfm/ton,1.405 Charge Frac,,,,50 ACH50,None,None,None,None,"Finished, R-19","2ft R5 Perimeter, Vertical","Wood Stud, R-7","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 10.5,"EF 12, National Average",National Average,National Average,None,None,Has Pool,None,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",4,10+,NNE,"2ft, Back Windows",200%,94%,,,East,13.0 kWDC,None,Hour14,67,EF 19.9,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,None,TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Electric Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Double, Clear, Metal, Air"
-project_testing-0067.osw,,,,4A,,Hour6,None,4,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,120% Usage,None,None,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +3h,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",None,120% Usage,30 ft^2,Wood,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",11,4+,8+,"Shingle, Asbestos, Medium",Brick,No,Natural Gas,73F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,"Room AC, EER 9.8",40% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,20% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,601.0 cfm/ton,0.848 Charge Frac,452.3 cfm/ton,1.127 Charge Frac,,,,3 ACH50,None,Ceiling R-19,"Wall R-15, Exterior","R-15, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,"HRV, 60%",EF 15.9,"EF 12, Average Installed",None,National Average,National Average,None,Has Pool,Other Fuel,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",7,0,Northwest,"2ft, Front Windows",50%,85%,,,None,None,None,Hour17,127,EF 21.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Fuel Oil Standard,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0068.osw,,,,5A,,Hour1,10 kWh,2,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,70F,No,0F,None,Single Exterior Front,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,20 ft^2,Steel,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",12,4+,8+,"Brick, Medium/Dark",Steel Frame,Yes,Other Fuel,67F,No,0F,None,None,Uninsulated,100% Usage,,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Other Fuel Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,None,No,None,None,None,None,,,,0.75 ACH50,None,Ceiling R-38,"Wall R-5, Exterior","R-5, Exterior","Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,None,None,None,,None,EF 21.9,"EF 12, Average Installed",None,National Average,Gas Lighting,Natural Gas,None,None,None,None,"Cooling Season, 7 days/wk",27,6,Northeast,"2ft, Front Windows",100%,134%,,,North,9.0 kWDC,None,Hour4,80,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Natural Gas Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Metal"
-project_testing-0069.osw,,,,4A,,Hour20,10 kWh,2,,,Premium Efficiency,,,Northeast,,Propane,120% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,66F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Top,8,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",5,4+,<8,"Wood, Medium/Dark",Concrete,Yes,None,74F,Yes,6F,Day +2h,No Exterior Use,Uninsulated,"50% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,551.5 cfm/ton,1.266 Charge Frac,154.8 cfm/ton,1.405 Charge Frac,,,,11.25 ACH50,None,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.95",,60% CFL,100% Usage,100% Usage,,"ERV, 72%",None,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,Gas Grill,Gas Lighting,Electricity,Has Pool,Natural Gas,National Average,Typical Efficiency,None,2,0,South,"2ft, Back Windows",150%,102%,,,South,3.0 kWDC,None,Hour7,127,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Propane Standard,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
-project_testing-0070.osw,,,,4A,,Hour3,10 kWh,5,,,None,,,Northeast,,None,80% Usage,None,None,80% Usage,Gas,120% Usage,62F,Yes,9F,Day Setup and Night Setback -2h,None,"NY, New York County",,"65 pints/day, 60% RH",None,100% Usage,20 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Aluminum, Light",Steel Frame,Yes,None,76F,No,0F,None,None,"R-2, Demand",50% Usage,,Shared Cooling,80% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,No,None,None,None,None,,,,7 ACH50,None,None,None,None,"Finished, R-38","2ft R10 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.95",,None,None,None,,"ERV, 72%",EF 17.6,"EF 12, Average Installed",National Average,None,Gas Lighting,Other Fuel,Has Pool,Natural Gas,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",27,0,Northwest,"2ft, Back Windows",100%,79%,,,West,7.0 kWDC,None,Hour11,127,EF 21.9,105% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0071.osw,,,,5A,,Hour21,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,Midwest,,Gas,100% Usage,None,None,120% Usage,Electric Induction,80% Usage,73F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,40 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,2500-2999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Concrete,Yes,Fuel Oil,74F,Yes,6F,Day and Night -3h,No Exterior Use,"R-5, Timer",50% Usage,,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,No,None,None,None,None,,,,4 ACH50,None,Ceiling R-19,None,None,"Finished, R-19",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.7",,20% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.2,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,National Average,Natural Gas,None,None,None,Typical Efficiency,None,None,7,North,"2ft, Right Windows",25%,101%,,,Northeast,1.0 kWDC,None,Hour5,80,EF 10.5,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Fuel Oil Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,None,"Double, Clear, Non-metal, Air"
-project_testing-0072.osw,,,,3B,,Hour3,None,4,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,100% Usage,None,100% Usage,76F,Yes,2F,Day and Night Setup +5h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,20 ft^2,Wood,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Bottom,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Concrete,No,Fuel Oil,80F,Yes,6F,Day +4h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,Yes,551.5 cfm/ton,1.127 Charge Frac,452.3 cfm/ton,0.988 Charge Frac,,,,15 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 19.9,"EF 20, 2008 Energy Star Most Efficient",None,National Average,Gas Lighting,None,None,None,None,National Average,None,27,6,WNW,"2ft, Right Windows",400%,82%,,,None,None,None,Hour9,10,EF 6.7,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Renter,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0073.osw,,,,2A,,Hour22,None,2,,,"Standard Efficiency, 0.5F Offset",,,South,,Gas,80% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,100% Usage,76F,Yes,9F,Day and Night Setup +1h,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,40 ft^2,Wood,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",8,4+,8+,"Brick, Light",Steel Frame,No,None,68F,Yes,12F,Day -3h,None,R-2,"50% Usage, Low Flow",,Shared Cooling,100% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,Yes,501.9 cfm/ton,0.988 Charge Frac,353.1 cfm/ton,0.848 Charge Frac,,,,1 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, R-19","Summer = 0.5, Winter = 0.7",,None,None,None,,Exhaust,EF 10.5,"EF 18, 2008 Energy Star",National Average,National Average,None,Other Fuel,Has Pool,Electricity,National Average,Typical Efficiency,None,2,4,WSW,"2ft, All Windows",50%,119%,,,None,None,None,Hour18,67,EF 21.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Electric Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air"
-project_testing-0074.osw,,,,5A,,Hour6,10 kWh,4,,,Premium Efficiency,,,Midwest,,Electric,120% Usage,EnergyStar,Yes,100% Usage,Electric Induction,120% Usage,80F,No,0F,None,Not Applicable,"IL, Cook County",,None,290 Rated kWh,120% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,4000+,4000+,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,Yes,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,,,,15 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,60% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 15.9,"EF 18, 2008 Energy Star",Gas Fireplace,National Average,National Average,Other Fuel,Has Pool,Electricity,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",4,1,West,None,100%,106%,,,North,3.0 kWDC,None,Hour17,80,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0075.osw,,,,2A,,Hour2,10 kWh,3,,,"Standard Efficiency, 0.5F Offset",,,South,,Gas,120% Usage,EnergyStar,Yes,80% Usage,Electric Induction,100% Usage,62F,No,0F,None,Double Exterior,"TX, Harris County",,None,290 Rated kWh,120% Usage,40 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",20,4+,8+,"Vinyl, Light",Brick,No,Electricity,75F,Yes,3F,Day and Night -1h,No Exterior Use,Uninsulated,50% Usage,,Ducted Heat Pump,40% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,None,No,None,None,None,None,,,,8 ACH50,None,Ceiling R-38,"Wall R-10, Exterior","R-10, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,95% Usage,95% Usage,,Supply,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,None,Electricity,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,None,27,6,ESE,None,400%,86%,,,None,None,None,Hour14,67,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0076.osw,,,,4A,,Hour13,10 kWh,4,,,Standard Efficiency,,,Northeast,,None,120% Usage,None,None,100% Usage,Electric Induction,100% Usage,69F,Yes,2F,Day Setup and Night Setback +1h,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,20 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Left,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1500-1999,1500-2499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,No,Other Fuel,55F,No,0F,None,No Exterior Use,R-2,"100% Usage, Low Flow",,"Room AC, EER 12.0",80% Conditioned,Room AC,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Other Fuel Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.6, Winter = 0.7",,100% LED,100% Usage,95% Usage,,Exhaust,None,"EF 20, 2008 Energy Star Most Efficient",National Average,None,Gas Lighting,None,Has Pool,Electricity,1.0 HP Pump,High Efficiency,None,12,9,Southeast,"2ft, Right Windows",100%,113%,,,None,None,None,Hour8,127,EF 21.9,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Propane Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0077.osw,,,,3B,,Hour5,10 kWh,1,,,Standard Efficiency,,,West,,None,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,60F,No,0F,None,Double Exterior,"CA, Los Angeles County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",12,4+,8+,"Fiber-Cement, Light",Wood Frame,Yes,None,68F,Yes,3F,Day and Night +3h,No Exterior Use,"R-2, Timer",100% Usage,,"Room AC, EER 8.5",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,0.25 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,"HRV, 60%",None,"EF 12, Average Installed",National Average,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,5,WSW,"2ft, Back Windows",150%,103%,,,East,5.0 kWDC,None,Hour18,10,EF 19.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Owner,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Metal"
-project_testing-0078.osw,,,,5A,,Hour16,None,5,,,Premium Efficiency,,,Midwest,,None,120% Usage,None,None,120% Usage,Propane,100% Usage,65F,Yes,9F,Day and Night Setup -5h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Wood,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,Right,None,None,16,Single-Family Attached,Single-Family Attached,Single-Family Attached,1000-1499,0-1499,Slab,None,"Single-Family Attached, Slab, Unvented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,62F,Yes,6F,Day +5h,No Exterior Use,R-2,"50% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,452.3 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.127 Charge Frac,,,,18.5 ACH50,Uninsulated,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.7",,20% LED,100% Usage,100% Usage,,"HRV, 60%",None,"EF 12, National Average",None,None,Gas Lighting,None,Has Pool,Natural Gas,1.0 HP Pump,Typical Efficiency,None,7,0,Southeast,None,150%,91%,,,None,None,Yes,Hour16,80,EF 10.5,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,None,IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Natural Gas Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0079.osw,,,,3B,,Hour2,None,1,,,Premium Efficiency,,,West,,Gas,80% Usage,None,None,120% Usage,Propane,120% Usage,77F,No,0F,None,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,100% Usage,30 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Vented Attic,None,Right,None,None,30,Single-Family Attached,Single-Family Attached,Single-Family Attached,2000-2499,1500-2499,Unvented Crawlspace,None,"Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Natural Gas,63F,No,0F,None,No Exterior Use,R-2,200% Usage,,"Room AC, EER 8.5",<10% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,<10% Conditioned,None,Yes,601.0 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.127 Charge Frac,,,,10 ACH50,R-19,Ceiling R-38,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,95% Usage,100% Usage,,"HRV, 60%",EF 6.7,"EF 16, 2001 Fed Standard-reference freezer",None,Gas Grill,Gas Lighting,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",12,10+,SSW,"2ft, Back Windows",200%,110%,,,West,7.0 kWDC,No,Hour13,10,EF 19.9,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Renter,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Propane Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0080.osw,,,,2A,,Hour23,"20 kWh, 80% Round Trip Efficiency",3,,,Premium Efficiency,,,South,,None,120% Usage,Standard,Yes,80% Usage,Gas,120% Usage,75F,Yes,2F,Night Setup +2h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,500-749,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Brick,Yes,Other Fuel,71F,No,0F,None,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"AC, SEER 13",<10% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-38,None,None,"Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,100% Usage,,Exhaust,EF 10.5,"EF 12, National Average",None,Gas Grill,Gas Lighting,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",7,0,West,"2ft, Back Windows",150%,89%,,,Southwest,7.0 kWDC,None,Hour9,67,EF 10.5,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,None,TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Double, Clear, Metal, Air"
-project_testing-0081.osw,,,,4A,,Hour17,"20 kWh, Outside",2,,,Premium Efficiency,,,Northeast,,Electric,100% Usage,None,None,80% Usage,Gas,120% Usage,60F,Yes,2F,Day Setup and Night Setback +5h,Double Exterior,"NY, New York County",,None,None,120% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",4,4+,<8,"Brick, Light",Wood Frame,Yes,Propane,63F,Yes,3F,Day +2h,No Exterior Use,"R-5, Timer",50% Usage,,"Room AC, EER 12.0",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Propane Fuel Furnace,None,None,None,None,No,None,None,None,None,,,,3.75 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,60% CFL,100% Usage,100% Usage,,"HRV, 60%",EF 19.9,None,National Average,Gas Grill,Gas Lighting,None,None,None,None,Typical Efficiency,None,4,9,SSE,"2ft, Front Windows",150%,123%,,,Northwest,3.0 kWDC,None,Hour15,127,EF 6.7,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Natural Gas Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,None,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0082.osw,,,,5A,,Hour22,None,4,,,None,,,Midwest,,Electric,80% Usage,None,None,100% Usage,Electric Induction,80% Usage,76F w/ Building America season,Yes,5F,Day Setup and Night Setback +3h,Double-Loaded Interior,"IL, Cook County",,None,None,120% Usage,30 ft^2,Fiberglass,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",9,4+,8+,None,Concrete,Yes,Propane,71F,Yes,6F,Night +1h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 12.0",100% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,154.8 cfm/ton,0.570 Charge Frac,303.5 cfm/ton,1.127 Charge Frac,,,,30 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,100% Usage,,Exhaust,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,National Average,None,Natural Gas,None,None,None,None,None,12,5,Southwest,"2ft, Back Windows",150%,144%,,,Northwest,1.0 kWDC,None,Hour8,80,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Renter,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,Living Space,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0083.osw,,,,3B,,Hour18,None,4,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,80% Usage,Propane,80% Usage,74F,No,0F,None,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",3,3,<8,"Fiber-Cement, Light",Wood Frame,Yes,Fuel Oil,76F,Yes,12F,Day -2h,None,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 8.5",60% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,None,No,None,None,None,None,,,,40 ACH50,None,Ceiling R-38,"Wall R-5, Exterior","R-5, Exterior","Finished, R-19",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.7",,None,None,None,,Exhaust,EF 6.7,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,Gas Grill,None,Other Fuel,Has Pool,Electricity,1.0 HP Pump,Typical Efficiency,None,7,0,NNW,None,400%,140%,,,Southwest,3.0 kWDC,None,Hour12,10,EF 10.2,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Fuel Oil Premium,,,Unheated Basement,Jack Northrop Fld H,33.92,-118.33,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0084.osw,,,,2A,,Hour2,"20 kWh, Outside",2,,,Standard Efficiency,,,South,,Propane,120% Usage,Standard,Yes,120% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,2500-2999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Concrete,Yes,Natural Gas,75F,Yes,12F,Night,None,Uninsulated,"50% Usage, Low Flow",,"Room AC, EER 12.0",<10% Conditioned,Room AC,No,None,,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,None,No,None,None,None,None,,,,5.25 ACH50,None,Ceiling R-38,None,None,"Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.95",,None,None,None,,None,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",None,National Average,National Average,Other Fuel,Has Pool,Natural Gas,0.75 HP Pump,None,"Cooling Season, 7 days/wk",2,5,Northwest,"2ft, Right Windows",100%,85%,,,Northwest,5.0 kWDC,None,Hour22,67,None,100% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",TX,Renter,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0085.osw,,,,2A,,Hour6,10 kWh,1,,,"Premium Efficiency, 0.5F Offset",,,South,,Gas,100% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,20 ft^2,Steel,None,None,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Other Fuel,60F,Yes,6F,Night -3h,No Exterior Use,"R-2, Demand",100% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,40 ACH50,None,Ceiling R-19,"Wall R-15, Exterior","R-15, Exterior","Finished, R-49",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,100% Usage,,"ERV, 72%",EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,National Average,None,None,None,None,None,None,2,9,Southwest,"2ft, Right Windows",25%,99%,,,South,13.0 kWDC,None,Hour10,67,EF 6.7,100% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",TX,Owner,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Occupied,,,Propane Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
-project_testing-0086.osw,,,,5A,,Hour21,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Gas,80% Usage,None,None,120% Usage,Propane,120% Usage,67F,Yes,2F,Day Setup and Night Setback +4h,Single Exterior Front,"IL, Cook County",,"65 pints/day, 60% RH",None,100% Usage,20 ft^2,Wood,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,4000+,4000+,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",21,4+,8+,"Wood, Medium/Dark",Steel Frame,Yes,Natural Gas,70F,Yes,3F,Day +3h,No Exterior Use,"R-2, Demand",100% Usage,,Shared Cooling,20% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Fan Coil Heating and Cooling, Fuel",Yes,154.8 cfm/ton,1.266 Charge Frac,254.0 cfm/ton,1.405 Charge Frac,,,,25 ACH50,None,None,None,None,"Finished, R-38","4ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,Exhaust,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",None,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,1.0 HP Pump,Typical Efficiency,None,12,0,North,"2ft, All Windows",400%,103%,,,Southeast,1.0 kWDC,None,Hour10,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Vacant,,,Natural Gas Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0087.osw,,,,4A,,Hour23,"20 kWh, Outside",1,,,Standard Efficiency,,,Northeast,,Propane,100% Usage,None,None,100% Usage,Gas,80% Usage,77F,No,0F,None,Double Exterior,"NY, New York County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Fiberglass,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Wood Frame,Yes,Electricity,64F,No,0F,None,None,"R-5, Timer","200% Usage, Low Flow",,Non-Ducted Heat Pump,100% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 29.3, 14 HSPF",Non-Ducted Heat Pump,Electricity MSHP,None,None,None,None,No,None,None,None,None,,,,1 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Other Fuel,None,None,None,None,"Cooling Season, 7 days/wk",27,1,SSW,"2ft, Left Windows",200%,84%,,,Northeast,7.0 kWDC,None,Hour1,127,EF 21.9,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Renter,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Propane Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
-project_testing-0088.osw,,,,4A,,Hour2,"20 kWh, 80% Round Trip Efficiency",2,,,Premium Efficiency,,,Northeast,,None,80% Usage,None,None,120% Usage,Electric Induction,120% Usage,64F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",8,4+,8+,"Stucco, Light",Brick,No,Other Fuel,71F w/ Building America season,No,0F,None,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,"AC, SEER 10",100% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.25 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, R-49",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,100% Usage,,Supply,EF 10.2,"EF 12, Average Installed",National Average,Gas Grill,National Average,None,None,None,None,National Average,None,7,0,Southwest,"2ft, All Windows",50%,78%,,,None,None,None,Hour9,127,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Not Available,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Premium,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,None,"Double, Clear, Non-metal, Air"
-project_testing-0089.osw,,,,2A,,Hour22,None,2,,,"Premium Efficiency, 0.5F Offset",,,South,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Induction,100% Usage,75F,Yes,5F,Night Setup +1h,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",8,4+,8+,"Vinyl, Light",Brick,No,Propane,65F,No,0F,None,None,"R-5, Timer",100% Usage,,"AC, SEER 10",40% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Propane Fuel Boiler,None,None,None,None,Yes,551.5 cfm/ton,0.709 Charge Frac,601.0 cfm/ton,1.405 Charge Frac,,,,50 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.5, Winter = 0.95",,None,None,None,,"HRV, 60%",EF 19.9,"EF 12, National Average",None,National Average,National Average,None,None,None,None,National Average,"Cooling Season, 7 days/wk",2,0,NNW,"2ft, Back Windows",200%,144%,,,None,None,None,Hour13,67,None,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Not Available,1,,"10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.012,",Vacant,,,FIXME Fuel Oil Indirect,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0090.osw,,,,5A,,Hour2,"20 kWh, Outside",5,,,"Standard Efficiency, No usage",,,Midwest,,Electric,100% Usage,None,None,120% Usage,Propane,100% Usage,62F,Yes,5F,Night Setback -1h,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,40 ft^2,Wood,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,Right,None,None,24,Single-Family Attached,Single-Family Attached,Single-Family Attached,2500-2999,2500-3999,Slab,None,"Single-Family Attached, Slab, Unvented Attic, No Garage",3,3,<8,"Brick, Medium/Dark",Concrete,No,Natural Gas,80F,No,0F,None,No Exterior Use,R-2,100% Usage,,Shared Cooling,40% Conditioned,Central AC,No,Cooling Only,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,<10% Conditioned,Fan Coil Cooling Only,Yes,501.9 cfm/ton,0.988 Charge Frac,353.1 cfm/ton,0.988 Charge Frac,,,,"7 ACH50, 0.5 Shelter Coefficient",Uninsulated,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-11","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,None,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,National Average,None,Has Pool,Other Fuel,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",4,8,East,"2ft, Front Windows",200%,113%,,,None,None,Yes,Hour13,80,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Non-metal"
-project_testing-0091.osw,,,,3B,,Hour4,"20 kWh, 80% Round Trip Efficiency",5,,,"Premium Efficiency, 0.5F Offset",,,West,,None,100% Usage,None,None,80% Usage,Gas,120% Usage,72F,Yes,5F,Day Setup and Night Setback -3h,None,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Fiberglass,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2000-2499,1500-2499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,"Stucco, Medium/Dark",Concrete,No,Natural Gas,55F,No,0F,None,No Exterior Use,"R-2, Timer",200% Usage,,Shared Cooling,<10% Conditioned,Central AC,No,Cooling Only,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,Fan Coil Cooling Only,Yes,154.8 cfm/ton,0.848 Charge Frac,601.0 cfm/ton,0.570 Charge Frac,,,,2 ACH50,None,None,None,None,"Finished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 15.9,"EF 12, National Average",Gas Fireplace,National Average,National Average,Natural Gas,Has Pool,None,National Average,High Efficiency,None,None,3,Northeast,"2ft, Right Windows",100%,84%,,,None,None,None,Hour18,10,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Owner,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,Fuel Oil Standard,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F15 B15 L0 R0,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
-project_testing-0092.osw,,,,3B,,Hour18,None,5,,,Premium Efficiency,,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,None,"CA, Los Angeles County",,None,None,80% Usage,30 ft^2,Steel,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",14,4+,8+,"Stucco, Medium/Dark",Steel Frame,Yes,Fuel Oil,67F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,25 ACH50,None,Ceiling R-38,"Wall R-15, Exterior","R-15, Exterior","Finished, R-38",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.7",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 21.9,"EF 12, National Average",Gas Fireplace,None,None,Other Fuel,None,None,None,High Efficiency,None,7,0,ENE,None,50%,82%,,,Southwest,7.0 kWDC,None,Hour20,10,EF 10.5,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Premium,,,None,Jack Northrop Fld H,33.92,-118.33,F10 B30 L10 R10,"Single, Clear, Metal, Exterior Clear Storm"
-project_testing-0093.osw,,,,3B,,Hour21,"20 kWh, 80% Round Trip Efficiency",5,,,Premium Efficiency,,,West,,Propane,80% Usage,None,None,100% Usage,Gas,100% Usage,65F,Yes,2F,Night Setback -2h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",13,4+,8+,"Shingle, Asbestos, Medium",Steel Frame,Yes,Fuel Oil,78F,Yes,3F,Day +5h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Fuel Oil Fuel Wall/Floor Furnace,None,None,None,None,Yes,303.5 cfm/ton,0.988 Charge Frac,551.5 cfm/ton,0.848 Charge Frac,,,,50 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 12, Average Installed",National Average,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,0,West,"2ft, Right Windows",100%,79%,,,East,9.0 kWDC,None,Hour7,10,EF 10.2,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0094.osw,,,,4A,,Hour10,None,5,,,"Standard Efficiency, No usage",,,Northeast,,None,100% Usage,EnergyStar,Yes,100% Usage,None,100% Usage,68F,No,0F,None,None,"NY, New York County",,None,290 Rated kWh,120% Usage,30 ft^2,Fiberglass,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",13,4+,8+,"Shingle, Composition, Medium",Wood Frame,No,None,69F,Yes,3F,Day -4h,No Exterior Use,"R-2, Timer",50% Usage,,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,20 ACH50,None,Ceiling R-13,"Wall R-13, Interior","R-13, Interior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.7",,100% LED,100% Usage,100% Usage,,"HRV, 60%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,None,Gas Lighting,Other Fuel,None,None,None,None,"Cooling Season, 7 days/wk",12,1,NNE,"2ft, Left Windows",400%,106%,,,None,None,None,Hour13,127,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Owner,1,,"10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0128,",Occupied,,,Electric Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Double, Low-E, Non-metal, Air, M-Gain"
-project_testing-0095.osw,,,,3B,,Hour15,"20 kWh, Outside",3,,,Standard Efficiency,,,West,,Electric,100% Usage,None,None,80% Usage,Propane,120% Usage,67F,Yes,5F,Day Setup -1h,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,30 ft^2,Fiberglass,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",9,4+,8+,"Stucco, Light",Wood Frame,No,Electricity,74F,Yes,12F,Day and Night -4h,No Exterior Use,Uninsulated,50% Usage,,Shared Cooling,<10% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,,,,6 ACH50,None,None,None,None,"Finished, R-38","2ft R5 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.5, Winter = 0.7",,100% CFL,95% Usage,95% Usage,,None,EF 6.7,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,National Average,Other Fuel,Has Pool,None,National Average,Typical Efficiency,None,7,0,Northwest,"2ft, All Windows",25%,99%,,,None,None,None,Hour18,10,EF 19.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Natural Gas Standard,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Single, Clear, Non-metal"
-project_testing-0096.osw,,,,3B,,Hour11,10 kWh,5,,,None,,,West,,Electric,120% Usage,None,None,120% Usage,None,80% Usage,74F,Yes,9F,Night Setup +4h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,120% Usage,40 ft^2,Wood,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,4000+,4000+,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Concrete,No,Electricity,63F,Yes,6F,Day,No Exterior Use,R-2,"100% Usage, Low Flow",,Non-Ducted Heat Pump,40% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 29.3, 14 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",None,None,National Average,None,Has Pool,Natural Gas,National Average,High Efficiency,"Cooling Season, 7 days/wk",4,0,ENE,"2ft, All Windows",150%,94%,,,None,None,None,Hour12,10,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Natural Gas Premium,,,Crawlspace,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
-project_testing-0097.osw,,,,5A,,Hour7,"20 kWh, Outside",1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,66F,No,0F,None,Not Applicable,"IL, Cook County",,None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",3,3,<8,"Wood, Medium/Dark",Wood Frame,No,Other Fuel,55F,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,"Room AC, EER 10.7",<10% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,Yes,353.1 cfm/ton,0.570 Charge Frac,700.2 cfm/ton,1.127 Charge Frac,,,,0.5 ACH50,R-13,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 12, National Average",Gas Fireplace,Gas Grill,National Average,None,Has Pool,Electricity,0.75 HP Pump,None,"Cooling Season, 7 days/wk",None,3,Southwest,None,75%,108%,,,None,None,No,Hour20,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Propane Standard,,,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air, Exterior Clear Storm"
-project_testing-0098.osw,,,,5A,,Hour20,"20 kWh, 80% Round Trip Efficiency",5,,,"Standard Efficiency, No usage",,,Midwest,,Electric,100% Usage,None,None,100% Usage,Gas,120% Usage,73F,No,0F,None,Single Exterior Front,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Shingle, Asbestos, Medium",Concrete,Yes,Electricity,71F,Yes,6F,Night +3h,No Exterior Use,"R-2, Timer",50% Usage,,"AC, SEER 8",40% Conditioned,Central AC,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,50% Conditioned,None,No,None,None,None,None,,,,2 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"CMU, 6-in Hollow, R-15","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,100% Usage,,Exhaust,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,None,Other Fuel,None,None,None,National Average,"Cooling Season, 7 days/wk",27,7,East,"2ft, Right Windows",200%,78%,,,East,9.0 kWDC,None,Hour18,80,EF 19.9,95% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Owner,1,,"10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0186,",Occupied,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,None,"Single, Clear, Non-metal, Exterior Clear Storm"
-project_testing-0099.osw,,,,3B,,Hour0,None,1,,,Standard Efficiency,,,West,,Propane,120% Usage,Standard,Yes,100% Usage,None,100% Usage,67F,Yes,2F,Day Setup -5h,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,40 ft^2,Wood,"20% Leakage to Outside, Uninsulated",Crawlspace,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,Right,None,None,90,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,Yes,Propane,75F,Yes,3F,Day and Night +1h,No Exterior Use,Uninsulated,200% Usage,,"AC, SEER 8",80% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,402.7 cfm/ton,1.127 Charge Frac,501.9 cfm/ton,0.709 Charge Frac,,,,0.75 ACH50,None,Ceiling R-38,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,95% Usage,,"ERV, 72%",EF 19.9,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Electricity,Has Pool,None,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",None,5,NNW,"2ft, Back Windows",50%,110%,,,North,5.0 kWDC,None,Hour16,10,None,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Renter,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Single, Clear, Non-metal"
-project_testing-0100.osw,,,,3B,,Hour23,"20 kWh, 80% Round Trip Efficiency",2,,,"Premium Efficiency, 0.5F Offset",,,West,,Electric,80% Usage,EnergyStar,Yes,100% Usage,None,120% Usage,60F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Left,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Brick,No,Electricity,60F,No,0F,None,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Electric Wall Furnace, 100% AFUE",Non-Ducted Heating,Electricity Electric Wall Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,No,None,None,None,None,,,,1.5 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,"ERV, 72%",EF 15.9,"EF 12, National Average",Gas Fireplace,National Average,Gas Lighting,Other Fuel,Has Pool,None,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",7,0,Northwest,"2ft, Front Windows",75%,85%,,,None,None,None,Hour16,10,EF 15.9,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,"10.0,8.8,","0.12,0.083,","0.0,0,","2.1,3.8,","11.0,11.7,","1.1,0.091,","0.0,0,","2.0,2.8,","NetMetering,,",",,","$/kW,,","2.5,,","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,data/simple_rates/County.tsv","0.0,0,","0.015,0.0195,",Vacant,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Metal, Exterior Clear Storm"
+OSW,build_existing_model.ahs_region,build_existing_model.aiannh_area,build_existing_model.area_median_income,build_existing_model.ashrae_iecc_climate_zone_2004,build_existing_model.ashrae_iecc_climate_zone_2004_2_a_split,build_existing_model.bathroom_spot_vent_hour,build_existing_model.battery,build_existing_model.bedrooms,build_existing_model.building_america_climate_zone,build_existing_model.cec_climate_zone,build_existing_model.ceiling_fan,build_existing_model.census_division,build_existing_model.census_division_recs,build_existing_model.census_region,build_existing_model.city,build_existing_model.clothes_dryer,build_existing_model.clothes_dryer_usage_level,build_existing_model.clothes_washer,build_existing_model.clothes_washer_presence,build_existing_model.clothes_washer_usage_level,build_existing_model.cooking_range,build_existing_model.cooking_range_usage_level,build_existing_model.cooling_setpoint,build_existing_model.cooling_setpoint_has_offset,build_existing_model.cooling_setpoint_offset_magnitude,build_existing_model.cooling_setpoint_offset_period,build_existing_model.corridor,build_existing_model.county,build_existing_model.county_and_puma,build_existing_model.dehumidifier,build_existing_model.dishwasher,build_existing_model.dishwasher_usage_level,build_existing_model.door_area,build_existing_model.doors,build_existing_model.duct_leakage_and_insulation,build_existing_model.duct_location,build_existing_model.eaves,build_existing_model.electric_vehicle,build_existing_model.emissions_electricity_folders,build_existing_model.emissions_electricity_units,build_existing_model.emissions_electricity_values_or_filepaths,build_existing_model.emissions_fossil_fuel_units,build_existing_model.emissions_fuel_oil_values,build_existing_model.emissions_natural_gas_values,build_existing_model.emissions_propane_values,build_existing_model.emissions_scenario_names,build_existing_model.emissions_types,build_existing_model.emissions_wood_values,build_existing_model.energystar_climate_zone_2023,build_existing_model.federal_poverty_level,build_existing_model.generation_and_emissions_assessment_region,build_existing_model.geometry_attic_type,build_existing_model.geometry_building_horizontal_location_mf,build_existing_model.geometry_building_horizontal_location_sfa,build_existing_model.geometry_building_level_mf,build_existing_model.geometry_building_number_units_mf,build_existing_model.geometry_building_number_units_sfa,build_existing_model.geometry_building_type_acs,build_existing_model.geometry_building_type_height,build_existing_model.geometry_building_type_recs,build_existing_model.geometry_floor_area,build_existing_model.geometry_floor_area_bin,build_existing_model.geometry_foundation_type,build_existing_model.geometry_garage,build_existing_model.geometry_space_combination,build_existing_model.geometry_stories,build_existing_model.geometry_stories_low_rise,build_existing_model.geometry_story_bin,build_existing_model.geometry_wall_exterior_finish,build_existing_model.geometry_wall_type,build_existing_model.has_pv,build_existing_model.heating_fuel,build_existing_model.heating_setpoint,build_existing_model.heating_setpoint_has_offset,build_existing_model.heating_setpoint_offset_magnitude,build_existing_model.heating_setpoint_offset_period,build_existing_model.holiday_lighting,build_existing_model.hot_water_distribution,build_existing_model.hot_water_fixtures,build_existing_model.household_has_tribal_persons,build_existing_model.hvac_cooling_efficiency,build_existing_model.hvac_cooling_partial_space_conditioning,build_existing_model.hvac_cooling_type,build_existing_model.hvac_has_ducts,build_existing_model.hvac_has_shared_system,build_existing_model.hvac_has_zonal_electric_heating,build_existing_model.hvac_heating_efficiency,build_existing_model.hvac_heating_type,build_existing_model.hvac_heating_type_and_fuel,build_existing_model.hvac_secondary_heating_efficiency,build_existing_model.hvac_secondary_heating_fuel,build_existing_model.hvac_secondary_heating_partial_space_conditioning,build_existing_model.hvac_shared_efficiencies,build_existing_model.hvac_system_is_faulted,build_existing_model.hvac_system_single_speed_ac_airflow,build_existing_model.hvac_system_single_speed_ac_charge,build_existing_model.hvac_system_single_speed_ashp_airflow,build_existing_model.hvac_system_single_speed_ashp_charge,build_existing_model.income,build_existing_model.income_recs_2015,build_existing_model.income_recs_2020,build_existing_model.infiltration,build_existing_model.insulation_ceiling,build_existing_model.insulation_floor,build_existing_model.insulation_foundation_wall,build_existing_model.insulation_rim_joist,build_existing_model.insulation_roof,build_existing_model.insulation_slab,build_existing_model.insulation_wall,build_existing_model.interior_shading,build_existing_model.iso_rto_region,build_existing_model.lighting,build_existing_model.lighting_interior_use,build_existing_model.lighting_other_use,build_existing_model.location_region,build_existing_model.mechanical_ventilation,build_existing_model.misc_extra_refrigerator,build_existing_model.misc_freezer,build_existing_model.misc_gas_fireplace,build_existing_model.misc_gas_grill,build_existing_model.misc_gas_lighting,build_existing_model.misc_hot_tub_spa,build_existing_model.misc_pool,build_existing_model.misc_pool_heater,build_existing_model.misc_pool_pump,build_existing_model.misc_well_pump,build_existing_model.natural_ventilation,build_existing_model.neighbors,build_existing_model.occupants,build_existing_model.orientation,build_existing_model.overhangs,build_existing_model.plug_load_diversity,build_existing_model.plug_loads,build_existing_model.puma,build_existing_model.puma_metro_status,build_existing_model.pv_orientation,build_existing_model.pv_system_size,build_existing_model.radiant_barrier,build_existing_model.range_spot_vent_hour,build_existing_model.reeds_balancing_area,build_existing_model.refrigerator,build_existing_model.refrigerator_usage_level,build_existing_model.roof_material,build_existing_model.sample_weight,build_existing_model.simulation_control_run_period_begin_day_of_month,build_existing_model.simulation_control_run_period_begin_month,build_existing_model.simulation_control_run_period_calendar_year,build_existing_model.simulation_control_run_period_end_day_of_month,build_existing_model.simulation_control_run_period_end_month,build_existing_model.simulation_control_timestep,build_existing_model.solar_hot_water,build_existing_model.state,build_existing_model.tenure,build_existing_model.units_represented,build_existing_model.usage_level,build_existing_model.utility_bill_detailed_filepaths,build_existing_model.utility_bill_electricity_filepaths,build_existing_model.utility_bill_electricity_fixed_charges,build_existing_model.utility_bill_electricity_marginal_rates,build_existing_model.utility_bill_fuel_oil_fixed_charges,build_existing_model.utility_bill_fuel_oil_marginal_rates,build_existing_model.utility_bill_natural_gas_fixed_charges,build_existing_model.utility_bill_natural_gas_marginal_rates,build_existing_model.utility_bill_propane_fixed_charges,build_existing_model.utility_bill_propane_marginal_rates,build_existing_model.utility_bill_pv_compensation_types,build_existing_model.utility_bill_pv_feed_in_tariff_rates,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,build_existing_model.utility_bill_scenario_names,build_existing_model.utility_bill_simple_filepaths,build_existing_model.utility_bill_wood_fixed_charges,build_existing_model.utility_bill_wood_marginal_rates,build_existing_model.vacancy_status,build_existing_model.vintage,build_existing_model.vintage_acs,build_existing_model.water_heater_efficiency,build_existing_model.water_heater_fuel,build_existing_model.water_heater_in_unit,build_existing_model.water_heater_location,build_existing_model.weather_file_city,build_existing_model.weather_file_latitude,build_existing_model.weather_file_longitude,build_existing_model.window_areas,build_existing_model.windows
+project_national-0001.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,120-150%,4A,4A,Hour23,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Electric Resistance,100% Usage,70F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"NY, Queens County","G3600810, G36004101",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Bottom,43,None,20 to 49 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",5,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,North,None,100%,89%,"NY, 04101","In metro area, principal city",None,None,None,Hour16,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York Laguardia Arpt,40.78,-73.88,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0002.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour20,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,"FL, Tampa",Electric,100% Usage,EnergyStar,Yes,100% Usage,Propane,100% Usage,78F,No,0F,None,Not Applicable,"FL, Hillsborough County","G1200570, G12005702",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"FL, 05702","In metro area, not/partially in principal city",None,None,No,Hour19,101,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Tampa International Ap,27.97,-82.53,F18 B18 L18 R18,"Single, Clear, Metal"
+project_national-0003.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour19,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"MI, Muskegon County","G2601210, G26000700",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,85%,"MI, 00700","In metro area, not/partially in principal city",None,None,No,Hour18,103,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Tankless,Natural Gas,Yes,Unheated Basement,Muskegon County Arpt,43.17,-86.23,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0004.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour22,None,4,Marine,6,Standard Efficiency,Pacific,Pacific,West,"CA, Santa Barbara",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"CA, Santa Barbara County","G0600830, G06008303",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,94%,"CA, 08303","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,Yes,Garage,Santa Barbara Municipal Ap,34.43,-119.85,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0005.osw,Non-CBSA West North Central,No,150%+,5A,5A,Hour1,None,4,Cold,None,None,West North Central,West North Central,Midwest,"NE, Omaha",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NE, Douglas County","G3100550, G31000901",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Heated Basement,3 Car,"Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-30,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,95%,"NE, 00901","In metro area, not/partially in principal city",None,None,No,Hour7,41,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NE,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Omaha Wsfo,41.37,-96.02,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0006.osw,Non-CBSA West North Central,No,120-150%,7A,7A,Hour5,None,4,Very Cold,None,None,West North Central,West North Central,Midwest,"ND, Fargo",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"ND, Cass County","G3800170, G38000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,95%,"ND, 00500","In metro area, not/partially in principal city",None,None,No,Hour20,37,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,ND,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Fargo Hector International Ap,46.93,-96.82,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0007.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,5A,5A,Hour7,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,120% Usage,None,None,120% Usage,Gas,120% Usage,72F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003502",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,2,East,None,200%,89%,"IL, 03502","In metro area, principal city",None,None,None,Hour11,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Premium,Electricity,No,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_national-0008.osw,Non-CBSA West South Central,No,150%+,2A,"2A - TX, LA",Hour6,None,3,Hot-Humid,None,None,West South Central,West South Central,South,"TX, College Station",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"TX, Brazos County","G4800410, G48003602",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",ERCOT,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,113%,"TX, 03602","In metro area, not/partially in principal city",None,None,No,Hour8,64,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TX,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Outside,College Station-Easterwood AP,30.583,-96.367,F6 B6 L6 R6,"Single, Clear, Metal"
+project_national-0009.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour0,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"NC, Wilmington",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NC, New Hanover County","G3701290, G37004700",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,106%,"NC, 04700","In metro area, not/partially in principal city",None,None,No,Hour9,98,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Living Space,Wilmington International Arpt,34.27,-77.9,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0010.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,0-30%,5A,5A,Hour19,None,1,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,120% Usage,None,None,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003501",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCWc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",6,4+,<8,None,Brick,No,Natural Gas,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,No,None,No,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,West,None,200%,89%,"IL, 03501","In metro area, principal city",None,None,None,Hour18,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0011.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour3,None,2,Hot-Dry,11,Standard Efficiency,Pacific,Pacific,West,"CA, Redding",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,Yes,5F,Night Setback +1h,Not Applicable,"CA, Shasta County","G0600890, G06008900",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,94%,"CA, 08900","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Redding Municipal Arpt,40.52,-122.32,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
+project_national-0012.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,5,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"VA, Henrico County","G5100870, G51051225",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,East,None,50%,106%,"VA, 51225","In metro area, not/partially in principal city",None,None,No,Hour4,99,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Richmond International Ap,37.52,-77.32,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0013.osw,Non-CBSA New England,No,Not Available,5A,5A,Hour22,None,3,Cold,None,None,New England,New England,Northeast,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"MA, Barnstable County","G2500010, G25004800",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,Not Available,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,55F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,Not Available,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,Not Available,Not Available,Not Available,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,0,South,None,100%,99%,"MA, 04800",Not/partially in metro area,None,None,No,Hour21,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Not Available,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Vacant,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Barnstable Muni Boa,41.67,-70.28,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0014.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour5,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,In another census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"MA, Essex County","G2500090, G25000703",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,6F,Night,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,99%,"MA, 00703","In metro area, not/partially in principal city",None,None,No,Hour18,131,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Beverly Muni,42.58,-70.92,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0015.osw,Non-CBSA West South Central,Yes,150%+,3A,3A,Hour13,None,3,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Tulsa",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"OK, Tulsa County","G4001430, G40001201",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-7,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,113%,"OK, 01201","In metro area, principal city",None,None,No,Hour17,51,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Tulsa International Airport,36.2,-95.88,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0016.osw,Non-CBSA New England,No,150%+,5A,5A,Hour17,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,"CT, Stamford",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"CT, Fairfield County","G0900010, G09000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,62F,Yes,6F,Day and Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,99%,"CT, 00102","In metro area, not/partially in principal city",None,None,No,Hour1,132,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Danbury Municipal,41.37,-73.48,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0017.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,5A,5A,Hour17,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003524",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Not Applicable,None,Top,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southeast,None,100%,96%,"IL, 03524","In metro area, principal city",None,None,None,Hour13,80,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0018.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour8,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"GA, Cobb County","G1300670, G13003004",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Finished Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,106%,"GA, 03004","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Marietta Dobbins Afb,33.92,-84.52,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0019.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour18,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,60F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003810",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",15,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",60% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southeast,None,50%,89%,"NY, 03810","In metro area, principal city",None,None,None,Hour12,127,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Metal"
+project_national-0020.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour4,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback +3h,Double-Loaded Interior,"NY, New York County","G3600610, G36003809",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",3,3,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,West,None,100%,89%,"NY, 03809","In metro area, principal city",None,None,None,Hour16,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
+project_national-0021.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour6,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Lakeland",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"FL, Polk County","G1201050, G12010501",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 10501","In metro area, not/partially in principal city",None,None,No,Hour1,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Lakeland Linder Rgn,27.98,-82.02,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0022.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour4,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Not Applicable,"NY, Albany County","G3600010, G36002002",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,101%,"NY, 02002","In metro area, not/partially in principal city",None,None,No,Hour20,127,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Unheated Basement,Albany County Ap,42.75,-73.8,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0023.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour15,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Detroit",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"MI, Wayne County","G2601630, G26003211",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,85%,"MI, 03211","In metro area, principal city",None,None,No,Hour5,103,EF 15.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0024.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,80-100%,4A,4A,Hour23,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"NY, Queens County","G3600810, G36004112",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,40 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,101%,"NY, 04112","In metro area, principal city",None,None,No,Hour16,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,New York Laguardia Arpt,40.78,-73.88,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0025.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,Yes,5F,Night Setback +3h,Not Applicable,"NC, Davidson County","G3700570, G37003500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,6 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,100%,106%,"NC, 03500","In metro area, not/partially in principal city",None,None,No,Hour21,97,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Crawlspace,Charlotte Douglas Intl Arpt,35.22,-80.95,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0026.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour23,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,72F,Yes,5F,Night Setback +5h,Not Applicable,"OR, Clackamas County","G4100050, G41001318",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,94%,"OR, 01318","In metro area, not/partially in principal city",None,None,No,Hour7,5,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Aurora State,45.25,-122.77,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0027.osw,Non-CBSA Mountain,No,100-120%,5B,5B,Hour5,None,3,Cold,None,None,Mountain,Mountain North,West,"CO, Pueblo",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"CO, Pueblo County","G0801010, G08000700",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RMPAc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,91%,"CO, 00700","In metro area, not/partially in principal city",None,None,No,Hour14,34,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Pueblo Memorial Ap,38.28,-104.5,F6 B6 L6 R6,"Single, Clear, Non-metal"
+project_national-0028.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour20,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Gas,100% Usage,72F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003805",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",12,3,West,None,100%,89%,"NY, 03805","In metro area, principal city",None,None,None,Hour17,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0029.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,100-120%,4A,4A,Hour18,None,1,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"VA, Alexandria",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback +4h,Double-Loaded Interior,"VA, Alexandria city","G5105100, G51051255",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,Middle,None,Middle,183,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Brick, Medium/Dark",Steel Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",None,1,West,None,100%,106%,"VA, 51255","In metro area, principal city",None,None,None,Hour17,99,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,No,None,Washington Dc Reagan Ap,38.87,-77.03,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0030.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Not Applicable,"PA, Dauphin County","G4200430, G42002401",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Fuel Oil,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,101%,"PA, 02401","In metro area, not/partially in principal city",None,None,No,Hour8,122,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Harrisburg Capital City Arpt,40.22,-76.85,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0031.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour6,None,2,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"NH, Rockingham County","G3300150, G33001000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,68F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,99%,"NH, 01000","In metro area, not/partially in principal city",None,None,No,Hour15,130,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NH,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Fuel Oil Standard,Fuel Oil,Yes,Heated Basement,Lawrence Muni,42.72,-71.12,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0032.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour18,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,2F,Night Setback +2h,Not Applicable,"FL, Sarasota County","G1201150, G12011502",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 11502","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Sarasota Bradenton,27.38,-82.55,F9 B9 L9 R9,"Single, Clear, Metal"
+project_national-0033.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour23,None,3,Hot-Dry,9,None,Pacific,Pacific,West,"CA, Glendale",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003719",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,Yes,12F,Night,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,94%,"CA, 03719","In metro area, principal city",None,None,No,Hour17,10,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0034.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour9,None,3,Marine,4,Standard Efficiency,Pacific,Pacific,West,"CA, Mountain View",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,5F,Night Setback +5h,Not Applicable,"CA, Santa Clara County","G0600850, G06008501",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,12F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,200%,94%,"CA, 08501","In metro area, not/partially in principal city",None,None,No,Hour16,9,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Premium,Natural Gas,Yes,Living Space,San Jose Intl Ap,37.37,-121.93,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0035.osw,"CBSA Seattle-Tacoma-Bellevue, WA",No,150%+,4C,4C,Hour21,None,3,Marine,None,None,Pacific,Pacific,West,"WA, Seattle",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"WA, King County","G5300330, G53011601",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,200%,94%,"WA, 11601","In metro area, principal city",None,None,No,Hour12,1,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Renton Muni,47.48,-122.22,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0036.osw,Non-CBSA South Atlantic,No,120-150%,4A,4A,Hour23,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Norfolk",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"VA, Norfolk city","G5107100, G51051154",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"VA, 51154","In metro area, principal city",None,None,No,Hour15,99,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Norfolk Nas,36.95,-76.28,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0037.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"NY, Suffolk County","G3601030, G36003305",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,101%,"NY, 03305","In metro area, not/partially in principal city",None,None,No,Hour22,128,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Islip-Long Island MacArthur AP,40.79,-73.1,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_national-0038.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour23,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"NY, Rensselaer County","G3600830, G36001900",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,60F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,50%,101%,"NY, 01900","In metro area, not/partially in principal city",None,None,No,Hour14,127,EF 19.9,95% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Albany County Ap,42.75,-73.8,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0039.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour1,None,4,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Springfield",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"IL, Sangamon County","G1701670, G17001300",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Finished Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 8",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 01300","In metro area, not/partially in principal city",None,None,No,Hour20,82,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Springfield Capital Ap,39.85,-89.68,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0040.osw,Non-CBSA Middle Atlantic,No,150%+,4A,4A,Hour6,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"PA, York County","G4201330, G42003601",None,None,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",1,1,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,101%,"PA, 03601","In metro area, not/partially in principal city",None,None,No,Hour7,122,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Harrisburg Capital City Arpt,40.22,-76.85,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0041.osw,Non-CBSA East North Central,No,120-150%,6A,6A,Hour5,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"WI, Outagamie County","G5500870, G55001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"WI, 01500","In metro area, not/partially in principal city",None,None,No,Hour18,76,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Appleton Outagamie,44.25,-88.52,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0042.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,150%+,3B,3B,Hour0,None,2,Hot-Dry,15,Standard Efficiency,Pacific,Pacific,West,"CA, Palm Springs",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"CA, Riverside County","G0600650, G06006502",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,Electricity,Has Pool,None,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,94%,"CA, 06502","In metro area, not/partially in principal city",None,None,No,Hour18,10,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,March Afb,33.9,-117.25,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0043.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,80-100%,1A,1A,Hour17,None,1,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Aventura",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Double-Loaded Interior,"FL, Miami-Dade County","G1200860, G12008604",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",5,4+,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,North,None,100%,106%,"FL, 08604","In metro area, not/partially in principal city",None,None,None,Hour16,102,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Miami Intl Ap,25.82,-80.3,F18 B18 L18 R18,"Single, Clear, Metal"
+project_national-0044.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,8,Standard Efficiency,Pacific,Pacific,West,"CA, Irvine",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"CA, Orange County","G0600590, G06005904",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,76F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southwest,None,100%,94%,"CA, 05904","In metro area, not/partially in principal city",None,None,No,Hour9,10,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Premium,Natural Gas,Yes,Living Space,Santa Ana John Wayne Ap,33.68,-117.87,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0045.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,150%+,4A,4A,Hour7,None,4,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,76F,No,0F,None,Not Applicable,"PA, Montgomery County","G4200910, G42003106",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR07,None,EF 17.6,None,None,None,None,None,Has Pool,Natural Gas,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,101%,"PA, 03106","In metro area, not/partially in principal city",None,None,No,Hour16,122,EF 15.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Willow Grove Nas,40.2,-75.15,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0046.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour11,None,3,Hot-Dry,14,Standard Efficiency,Pacific,Pacific,West,In another census Place,Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,78F,Yes,5F,Night Setback +5h,Not Applicable,"CA, Kern County","G0600290, G06002905",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,78F,Yes,12F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,94%,"CA, 02905","In metro area, not/partially in principal city",None,None,No,Hour19,10,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Bakersfield Meadows Field,35.43,-119.05,F6 B6 L6 R6,"Double, Clear, Metal, Air"
+project_national-0047.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour22,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,100% Usage,None,None,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double-Loaded Interior,"NY, Queens County","G3600810, G36004103",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,60F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,East,None,100%,89%,"NY, 04103","In metro area, principal city",None,None,None,Hour10,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,No,None,New York Laguardia Arpt,40.78,-73.88,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0048.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,100-120%,4A,4A,Hour4,None,3,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"NJ, Ocean County","G3400290, G34001201",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,101%,"NJ, 01201","In metro area, not/partially in principal city",None,None,No,Hour17,126,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Living Space,Belmar Asc,40.18,-74.07,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_national-0049.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"SC, Anderson County","G4500070, G45000200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"SC, 00200","In metro area, not/partially in principal city",None,None,No,Hour9,95,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Outside,Anderson Rgnl AP,34.5,-82.717,F18 B18 L18 R18,"Single, Clear, Metal"
+project_national-0050.osw,Non-CBSA West South Central,Yes,150%+,3A,3A,Hour22,None,2,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"OK, Tulsa",Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"OK, Tulsa County","G4001430, G40001202",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,113%,"OK, 01202","In metro area, not/partially in principal city",None,None,No,Hour13,51,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Tulsa International Airport,36.2,-95.88,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0051.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour6,None,3,Cold,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Reno",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"NV, Washoe County","G3200310, G32000101",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southeast,None,200%,84%,"NV, 00101","In metro area, not/partially in principal city",None,None,No,Hour17,12,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Reno Tahoe International Ap,39.48,-119.77,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_national-0052.osw,Non-CBSA West South Central,No,100-120%,3A,3A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"AR, Little Rock",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"AR, Pulaski County","G0501190, G05001000",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,113%,"AR, 01000","In metro area, not/partially in principal city",None,None,No,Hour16,85,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Little Rock Adams Field,34.75,-92.23,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0053.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"MI, Berrien County","G2600210, G26002400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"MI, 02400","In metro area, not/partially in principal city",None,None,No,Hour15,104,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Benton Harbor Ross,42.13,-86.43,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0054.osw,"CBSA Seattle-Tacoma-Bellevue, WA",No,150%+,4C,4C,Hour20,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Seattle",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double-Loaded Interior,"WA, King County","G5300330, G53011603",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,Middle,None,Top,183,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",4,4+,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR06,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,3,North,None,100%,91%,"WA, 11603","In metro area, principal city",None,None,None,Hour17,1,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WA,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,No,None,Renton Muni,47.48,-122.22,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0055.osw,Non-CBSA East North Central,No,0-30%,5A,5A,Hour20,None,2,Cold,None,None,East North Central,East North Central,Midwest,"OH, Cleveland",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,Yes,2F,Night Setback -2h,Not Applicable,"OH, Cuyahoga County","G3900350, G39000908",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,100-150%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,10000-14999,<20000,<20000,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northeast,None,200%,85%,"OH, 00908","In metro area, principal city",None,None,No,Hour18,111,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Burke Lakefront,41.52,-81.68,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0056.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,100-120%,4A,4A,Hour0,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"DC, Washington",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"DC, District of Columbia","G1100010, G11000104",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,Middle,None,None,8,Single-Family Attached,Single-Family Attached,Single-Family Attached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,West,None,100%,96%,"DC, 00104","In metro area, principal city",None,None,No,Hour16,123,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,DC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1940s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Washington Dc Reagan Ap,38.87,-77.03,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0057.osw,"CBSA San Francisco-Oakland-Hayward, CA",No,150%+,3C,3C,Hour6,None,2,Marine,3,Standard Efficiency,Pacific,Pacific,West,"CA, Oakland",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Double-Loaded Interior,"CA, Alameda County","G0600010, G06000102",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,Middle,None,Bottom,116,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",3,3,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",4,2,West,None,200%,91%,"CA, 00102","In metro area, not/partially in principal city",None,None,None,Hour19,9,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Living Space,Hayward Air Term,37.67,-122.12,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0058.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour17,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IN, Indianapolis City Balance",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,65F,No,0F,None,Not Applicable,"IN, Marion County","G1800970, G18002305",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,85%,"IN, 02305","In metro area, not/partially in principal city",None,None,No,Hour9,106,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Indianapolis Intl Ap,39.72,-86.27,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_national-0059.osw,Non-CBSA New England,No,150%+,6A,6A,Hour0,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"ME, Penobscot County","G2300190, G23000300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Concrete,No,Fuel Oil,65F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,99%,"ME, 00300","In metro area, not/partially in principal city",None,None,No,Hour6,134,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,ME,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Bangor Intl AP,44.8,-68.817,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0060.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour11,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Bellingham",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"WA, Whatcom County","G5300730, G53010100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,94%,"WA, 10100","In metro area, not/partially in principal city",None,None,No,Hour14,1,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Living Space,Bellingham Intl Ap,48.8,-122.53,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0061.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour12,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,76F,No,0F,None,Not Applicable,"CT, Middlesex County","G0900070, G09000700",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Concrete,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,40 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,99%,"CT, 00700","In metro area, not/partially in principal city",None,None,No,Hour14,132,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Hartford Brainard Fd,41.73,-72.65,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0062.osw,Non-CBSA West South Central,No,150%+,4A,4A,Hour21,None,5,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"AR, Benton County","G0500070, G05000100",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,65F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,6 ACH50,R-19,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,113%,"AR, 00100","In metro area, not/partially in principal city",None,None,No,Hour17,56,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Bentonville Awos,36.35,-94.22,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0063.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour11,None,5,Hot-Dry,None,None,Mountain,Mountain South,West,"AZ, Scottsdale",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback +4h,Not Applicable,"AZ, Maricopa County","G0400130, G04000110",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,200%,84%,"AZ, 00110","In metro area, not/partially in principal city",None,None,No,Hour18,28,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Garage,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F9 B9 L9 R9,"Single, Clear, Metal"
+project_national-0064.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour4,None,5,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Nashville-Davidson Metropolitan Government Balance",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,No,0F,None,Not Applicable,"TN, Davidson County","G4700370, G47002501",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,110%,"TN, 02501","In metro area, not/partially in principal city",None,None,No,Hour19,92,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Nashville International Ap,36.12,-86.68,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0065.osw,Non-CBSA West North Central,No,80-100%,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"IA, Davenport",Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Not Applicable,"IA, Scott County","G1901630, G19000900",None,None,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,10 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,95%,"IA, 00900","In metro area, not/partially in principal city",None,None,No,Hour16,70,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Moline Quad City Intl Ap,41.47,-90.52,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0066.osw,Non-CBSA East South Central,No,120-150%,3A,3A,Hour9,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"AL, Jefferson County","G0100730, G01001304",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,100%,110%,"AL, 01304","In metro area, not/partially in principal city",None,None,No,Hour3,89,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Garage,Birmingham Municipal Ap,33.57,-86.75,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0067.osw,Non-CBSA West South Central,No,150%+,3A,3A,Hour3,None,4,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Norman",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"OK, Cleveland County","G4000270, G40000900",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,10 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,113%,"OK, 00900","In metro area, not/partially in principal city",None,None,No,Hour23,50,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Oklahoma City Tinker Afb,35.42,-97.38,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0068.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour21,None,1,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"SC, Columbia",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"SC, Richland County","G4500790, G45000604",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,None,Brick,No,Electricity,67F,Yes,6F,Night,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"SC, 00604","In metro area, not/partially in principal city",None,None,No,Hour10,96,EF 19.9,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Premium,Electricity,Yes,Living Space,Columbia Metro Arpt,33.95,-81.12,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0069.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour3,None,5,Cold,None,None,Mountain,Mountain North,West,"CO, Denver",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,5F,Night Setback +2h,Not Applicable,"CO, Denver County","G0800310, G08000815",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,91%,"CO, 00815","In metro area, not/partially in principal city",None,None,No,Hour8,33,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Aurora Buckley Field Angb,39.72,-104.75,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0070.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour8,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,76F,No,0F,None,Not Applicable,"FL, Charlotte County","G1200150, G12001500",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,78F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,200%,106%,"FL, 01500","In metro area, not/partially in principal city",None,None,No,Hour11,101,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Living Space,Fort Myers Page Field,26.58,-81.87,F15 B15 L15 R15,"Single, Clear, Metal"
+project_national-0071.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour4,None,3,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Mesa",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +5h,Not Applicable,"AZ, Maricopa County","G0400130, G04000101",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,EF 19.9,"EF 12, National Average",None,None,None,None,Has Pool,Electricity,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,84%,"AZ, 00101","In metro area, not/partially in principal city",None,None,No,Hour16,28,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0072.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour18,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003801",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",6,4+,<8,None,Brick,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,50%,89%,"NY, 03801","In metro area, principal city",None,None,None,Hour11,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Premium,Fuel Oil,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_national-0073.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour22,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"FL, Okaloosa County","G1200910, G12009100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Electricity,72F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northeast,None,100%,106%,"FL, 09100","In metro area, not/partially in principal city",None,None,No,Hour20,91,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Garage,Valparaiso Elgin Afb,30.48,-86.52,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0074.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour15,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"NY, Monroe County","G3600550, G36000906",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,101%,"NY, 00906","In metro area, not/partially in principal city",None,None,No,Hour19,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Rochester Greater Rochester I,43.12,-77.68,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0075.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour8,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +1h,Not Applicable,"OH, Cuyahoga County","G3900350, G39000909",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,100%,85%,"OH, 00909","In metro area, not/partially in principal city",None,None,No,Hour11,111,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Burke Lakefront,41.52,-81.68,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_national-0076.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Newport Beach",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,Yes,2F,Night Setback -5h,Not Applicable,"CA, Orange County","G0600590, G06005903",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,50%,94%,"CA, 05903","In metro area, not/partially in principal city",None,None,No,Hour12,10,EF 19.9,95% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0077.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour6,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Farmington Hills",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,No,0F,None,Not Applicable,"MI, Oakland County","G2601250, G26002907",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,200%,85%,"MI, 02907","In metro area, not/partially in principal city",None,None,No,Hour10,103,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Oakland Co Intl,42.67,-83.42,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0078.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour20,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Not Applicable,"NC, Johnston County","G3701010, G37001100",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,7 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northeast,None,200%,106%,"NC, 01100","In metro area, not/partially in principal city",None,None,No,Hour17,98,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Goldsboro Seymour Johnson Afb,35.35,-77.97,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0079.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour2,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"MD, Bethesda",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"MD, Montgomery County","G2400310, G24001004",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"MD, 01004","In metro area, not/partially in principal city",None,None,No,Hour8,123,EF 17.6,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,MD,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Washington Dc Reagan Ap,38.87,-77.03,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0080.osw,Non-CBSA Mountain,No,150%+,6B,6B,Hour7,None,1,Cold,None,Standard Efficiency,Mountain,Mountain North,West,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"MT, Flathead County","G3000290, G30000100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,91%,"MT, 00100",Not/partially in metro area,None,None,No,Hour17,17,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MT,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Living Space,Kalispell Glacier Pk IntL Ar,48.32,-114.25,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0081.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour2,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003420",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,200%,85%,"IL, 03420","In metro area, not/partially in principal city",None,None,No,Hour17,80,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0082.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour15,None,3,Cold,None,None,East North Central,East North Central,Midwest,"WI, Janesville",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,2F,Night Setback +5h,Not Applicable,"WI, Rock County","G5501050, G55002400",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,85%,"WI, 02400","In metro area, not/partially in principal city",None,None,No,Hour13,78,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Janesville Rock Co,42.62,-89.03,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_national-0083.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour8,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"SC, Horry County","G4500510, G45001102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,7 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,106%,"SC, 01102","In metro area, not/partially in principal city",None,None,No,Hour21,96,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Myrtle Beach Afb,33.68,-78.93,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0084.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"OH, Youngstown",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,9F,Night Setback -4h,Not Applicable,"OH, Mahoning County","G3900990, G39001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,85%,"OH, 01500","In metro area, not/partially in principal city",None,None,No,Hour7,111,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Youngstown Regional Airport,41.25,-80.67,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0085.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour5,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"AL, Shelby County","G0101170, G01001200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,110%,"AL, 01200","In metro area, not/partially in principal city",None,None,No,Hour15,89,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Birmingham Municipal Ap,33.57,-86.75,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0086.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour18,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"OH, Dayton",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setup +1h,Not Applicable,"OH, Montgomery County","G3901130, G39004603",None,None,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,85%,"OH, 04603","In metro area, not/partially in principal city",None,None,No,Hour19,113,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,OH,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Dayton International Airport,39.9,-84.22,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0087.osw,Non-CBSA East North Central,No,100-120%,5A,5A,Hour21,None,2,Cold,None,None,East North Central,East North Central,Midwest,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Night Setup +5h,Not Applicable,"IN, Elkhart County","G1800390, G18000500",None,None,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,12F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,50 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,85%,"IN, 00500","In metro area, not/partially in principal city",None,None,No,Hour11,105,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,South Bend Michiana Rgnl Ap,41.7,-86.33,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0088.osw,Non-CBSA East South Central,No,150%+,2A,"2A - FL, GA, AL, MS",Hour19,None,4,Hot-Humid,None,Standard Efficiency,East South Central,East South Central,South,"MS, Gulfport",Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,Yes,5F,Night Setup +5h,Not Applicable,"MS, Harrison County","G2800470, G28002000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,50%,110%,"MS, 02000","In metro area, not/partially in principal city",None,None,No,Hour20,87,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MS,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Gulfport-Biloxi Intl AP,30.4,-89.067,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0089.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour12,None,4,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Huntington Beach",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"CA, Orange County","G0600590, G06005914",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,100%,94%,"CA, 05914","In metro area, not/partially in principal city",None,None,No,Hour18,10,EF 17.6,100% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Premium,Natural Gas,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0090.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour0,None,4,Cold,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Flagstaff",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"AZ, Coconino County","G0400050, G04000400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,5 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,None,None,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,84%,"AZ, 00400","In metro area, not/partially in principal city",None,None,No,Hour9,28,EF 19.9,100% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Flagstaff Pulliam Arpt,35.13,-111.67,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0091.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour23,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -3h,Not Applicable,"SC, Aiken County","G4500030, G45001500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"SC, 01500","In metro area, not/partially in principal city",None,None,No,Hour17,96,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Augusta Bush Field,33.37,-81.97,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0092.osw,Non-CBSA West South Central,No,150%+,3A,3A,Hour13,None,3,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"AR, Pulaski County","G0501190, G05000900",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRMVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,113%,"AR, 00900","In metro area, not/partially in principal city",None,None,No,Hour11,85,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Premium,Natural Gas,Yes,Living Space,Little Rock Adams Field,34.75,-92.23,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0093.osw,"CBSA Detroit-Warren-Dearborn, MI",No,100-120%,5A,5A,Hour4,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"MI, St. Clair County","G2601470, G26003100",None,None,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage",2,2,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,Gas Fireplace,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,200%,85%,"MI, 03100","In metro area, not/partially in principal city",None,None,No,Hour17,103,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,St Clair County Int,42.92,-82.53,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0094.osw,Non-CBSA West South Central,No,150%+,4A,4A,Hour16,None,4,Mixed-Humid,None,Standard Efficiency,West South Central,West South Central,South,"AR, Fayetteville",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,2F,Night Setback -3h,Not Applicable,"AR, Washington County","G0501430, G05000200",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,50%,113%,"AR, 00200","In metro area, not/partially in principal city",None,None,No,Hour21,56,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AR,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Fayetteville Drake Field,36.0,-94.17,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0095.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour22,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, Buffalo",Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Night Setback +4h,Not Applicable,"NY, Erie County","G3600290, G36001205",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,101%,"NY, 01205","In metro area, principal city",None,None,No,Hour18,127,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Buffalo Niagara Intl Ap,42.93,-78.73,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0096.osw,Non-CBSA Middle Atlantic,No,150%+,5A,5A,Hour1,None,2,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,"PA, Pittsburgh",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,76F,No,0F,None,Not Applicable,"PA, Allegheny County","G4200030, G42001701",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,72F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",<10% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,101%,"PA, 01701","In metro area, principal city",None,None,No,Hour8,115,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Pittsburgh Allegheny Co Ap,40.35,-79.92,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0097.osw,"CBSA San Francisco-Oakland-Hayward, CA",No,150%+,3C,3C,Hour21,None,3,Marine,12,Standard Efficiency,Pacific,Pacific,West,"CA, Livermore",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"CA, Alameda County","G0600010, G06000110",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,94%,"CA, 00110","In metro area, not/partially in principal city",None,None,No,Hour23,9,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Garage,Hayward Air Term,37.67,-122.12,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0098.osw,Non-CBSA Pacific,No,150%+,4C,4C,Hour14,None,4,Marine,None,Standard Efficiency,Pacific,Pacific,West,"OR, Eugene",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"OR, Lane County","G4100390, G41000703",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,None,Gas Fireplace,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,94%,"OR, 00703","In metro area, not/partially in principal city",None,None,No,Hour16,5,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Garage,Eugene Mahlon Sweet Arpt Uo,44.05,-123.07,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0099.osw,Non-CBSA West North Central,No,150%+,6A,6A,Hour20,None,3,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"MN, St Paul",Gas,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"MN, Ramsey County","G2701230, G27001304",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,50%,95%,"MN, 01304","In metro area, principal city",None,None,No,Hour19,43,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MN,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,St Paul Downtown Ap,44.93,-93.05,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0100.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour19,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback -5h,Not Applicable,"FL, Citrus County","G1200170, G12001701",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,200-300%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"FL, 01701","In metro area, not/partially in principal city",None,None,No,Hour18,101,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Ocala Muni Awos,29.17,-82.22,F9 B9 L9 R9,"Single, Clear, Metal"
+project_national-0101.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,30-60%,4A,4A,Hour7,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, Yonkers",None,80% Usage,None,None,80% Usage,Gas,80% Usage,65F,No,0F,None,Double-Loaded Interior,"NY, Westchester County","G3601190, G36003106",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,200-300%,NYSTc,None,Right,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,70F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,35000-39999,20000-39999,20000-39999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,North,None,50%,89%,"NY, 03106","In metro area, not/partially in principal city",None,None,None,Hour7,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,No,None,White Plains Westchester Co A,41.07,-73.72,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_national-0102.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,60-80%,5A,5A,Hour19,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003413",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 03413","In metro area, not/partially in principal city",None,None,No,Hour17,80,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0103.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback,Not Applicable,"GA, Hall County","G1301390, G13003400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,106%,"GA, 03400","In metro area, not/partially in principal city",None,None,No,Hour20,94,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Rome R B Russell Ap,34.35,-85.17,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0104.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour6,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Richmond",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"VA, Richmond city","G5107600, G51051235",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,200%,106%,"VA, 51235","In metro area, principal city",None,None,No,Hour22,99,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Richmond International Ap,37.52,-77.32,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0105.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour19,None,5,Cold,None,None,Mountain,Mountain South,West,"NM, Santa Fe",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback +3h,Not Applicable,"NM, Santa Fe County","G3500490, G35000500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Heated Basement,3 Car,"Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,2 ACH50,R-38,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,84%,"NM, 00500","In metro area, not/partially in principal city",None,None,No,Hour8,31,EF 17.6,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NM,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Sata Fe County Municipal Ap,35.62,-106.08,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0106.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,1,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,120% Usage,None,None,120% Usage,Gas,120% Usage,76F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003806",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,North,None,200%,89%,"NY, 03806","In metro area, principal city",None,None,None,Hour8,127,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Tankless,Natural Gas,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0107.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour22,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"MD, Rockville",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,No,0F,None,Not Applicable,"MD, Montgomery County","G2400310, G24001003",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Southeast,None,100%,106%,"MD, 01003","In metro area, not/partially in principal city",None,None,No,Hour18,123,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MD,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Unheated Basement,Washington Dc Reagan Ap,38.87,-77.03,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0108.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour1,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,68F,Yes,2F,Night Setback +2h,Not Applicable,"CA, Los Angeles County","G0600370, G06003730",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,Natural Gas,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,50%,94%,"CA, 03730","In metro area, principal city",None,None,No,Hour19,10,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0109.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour2,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Peoria",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,65F,No,0F,None,Not Applicable,"IL, Peoria County","G1701430, G17001701",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,750-999,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,6F,Night,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northwest,None,200%,85%,"IL, 01701","In metro area, not/partially in principal city",None,None,No,Hour19,82,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Peoria Greater Peoria Ap,40.67,-89.68,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0110.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour10,None,4,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,Yes,2F,Night Setback +3h,Not Applicable,"FL, St. Johns County","G1201090, G12010900",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,76F,Yes,6F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-38,Ceiling R-13,None,None,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 10900","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 15.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Propane Tankless,Propane,Yes,Living Space,Jacksonville Nas,30.23,-81.67,F6 B6 L6 R6,"Double, Clear, Metal, Air"
+project_national-0111.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour6,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Laguna Niguel",Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"CA, Orange County","G0600590, G06005901",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,Natural Gas,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,50%,94%,"CA, 05901","In metro area, not/partially in principal city",None,None,No,Hour13,10,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Santa Ana John Wayne Ap,33.68,-117.87,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_national-0112.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour21,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Rockford",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,67F,No,0F,None,Not Applicable,"IL, Winnebago County","G1702010, G17002801",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR04,None,None,None,Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Northwest,None,50%,85%,"IL, 02801","In metro area, not/partially in principal city",None,None,No,Hour12,80,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Rockford Greater Rockford Ap,42.2,-89.1,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0113.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour8,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,76F,Yes,2F,Night Setback -4h,Not Applicable,"CA, Los Angeles County","G0600370, G06003727",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,Has Pool,Natural Gas,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,94%,"CA, 03727","In metro area, principal city",None,None,No,Hour19,10,EF 19.9,100% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Tankless,Natural Gas,Yes,Garage,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0114.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,0-30%,5A,5A,Hour22,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",None,100% Usage,None,None,100% Usage,Gas,100% Usage,70F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"IL, Cook County","G1700310, G17003529",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCWc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",5,4+,<8,None,Brick,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,East,None,100%,89%,"IL, 03529","In metro area, principal city",None,None,None,Hour14,80,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0115.osw,Non-CBSA East South Central,No,150%+,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,None,East South Central,East South Central,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,76F,No,0F,None,Not Applicable,"AL, Mobile County","G0100970, G01002703",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,North,None,50%,110%,"AL, 02703","In metro area, not/partially in principal city",None,None,No,Hour17,90,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Mobile Regional Ap,30.68,-88.25,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0116.osw,Non-CBSA West North Central,No,120-150%,5A,5A,Hour16,None,4,Cold,None,None,West North Central,West North Central,Midwest,"IA, Des Moines",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback -3h,Not Applicable,"IA, Polk County","G1901530, G19001700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,95%,"IA, 01700","In metro area, principal city",None,None,No,Hour16,70,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Garage,Des Moines Intl Ap,41.53,-93.67,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0117.osw,Non-CBSA West South Central,No,120-150%,2A,"2A - TX, LA",Hour23,None,5,Hot-Humid,None,Standard Efficiency,West South Central,West South Central,South,"LA, Baton Rouge",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,76F,Yes,9F,Night Setback +1h,Not Applicable,"LA, East Baton Rouge Parish","G2200330, G22001501",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRMVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,113%,"LA, 01501","In metro area, not/partially in principal city",None,None,No,Hour19,58,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,LA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Baton Rouge Ryan Arpt,30.53,-91.15,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0118.osw,Non-CBSA South Atlantic,No,100-120%,3A,3A,Hour15,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"GA, Augusta-Richmond County Consolidated Government Balance",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,9F,Night Setback -1h,Not Applicable,"GA, Richmond County","G1302450, G13004000",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,100%,106%,"GA, 04000","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Augusta Bush Field,33.37,-81.97,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0119.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,100-120%,3A,3A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -4h,Not Applicable,"GA, Gwinnett County","G1301350, G13004006",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,106%,"GA, 04006","In metro area, not/partially in principal city",None,None,No,Hour7,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Premium,Natural Gas,Yes,Garage,Dekalb Peachtree,33.87,-84.3,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0120.osw,Non-CBSA East North Central,No,100-120%,6A,6A,Hour3,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"WI, West Allis",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,5F,Night Setback +2h,Not Applicable,"WI, Milwaukee County","G5500790, G55040701",None,None,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,200-300%,RFCWc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Finished Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Northwest,None,100%,85%,"WI, 40701","In metro area, not/partially in principal city",None,None,No,Hour17,79,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0121.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,120-150%,6A,6A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"WI, Kenosha",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"WI, Kenosha County","G5500590, G55010000",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,West,None,100%,85%,"WI, 10000","In metro area, not/partially in principal city",None,None,No,Hour18,79,EF 21.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Milwaukee Mitchell Intl Ap,42.95,-87.9,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0122.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,0-30%,3B,3B,Hour1,None,1,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",None,120% Usage,None,None,120% Usage,Gas,120% Usage,75F,No,0F,None,Double-Loaded Interior,"CA, Los Angeles County","G0600370, G06003732",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,0-100%,CAMXc,None,Middle,None,Top,24,None,20 to 49 Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",3,3,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,10000-14999,<20000,<20000,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,1,Southwest,None,200%,91%,"CA, 03732","In metro area, principal city",None,None,None,Hour17,10,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,No,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0123.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour19,None,3,Marine,2,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"CA, Sonoma County","G0600970, G06009701",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,94%,"CA, 09701","In metro area, not/partially in principal city",None,None,No,Hour17,9,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Tankless,Natural Gas,Yes,Garage,Santa Rosa Awos,38.52,-122.82,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_national-0124.osw,Non-CBSA Pacific,No,120-150%,1A,1A,Hour7,None,3,Hot-Humid,None,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +5h,Not Applicable,"HI, Hawaii County","G1500010, G15000200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,,,,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,None,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,None,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,None,None,None,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CRHI,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,94%,"HI, 00200",Not/partially in metro area,None,None,No,Hour17,None,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,HI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Hilo International Ap,19.72,-155.05,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0125.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour3,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,"NY, New Rochelle",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"NY, Westchester County","G3601190, G36003107",None,None,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,50%,101%,"NY, 03107","In metro area, not/partially in principal city",None,None,No,Hour6,127,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,White Plains Westchester Co A,41.07,-73.72,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0126.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour4,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"SC, Spartanburg County","G4500830, G45000302",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 15.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"SC, 00302","In metro area, not/partially in principal city",None,None,No,Hour16,95,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Greer GreenvL Spartanbrg Ap,34.9,-82.22,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0127.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,100-120%,4A,4A,Hour0,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,120% Usage,None,None,120% Usage,Gas,120% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, Kings County","G3600470, G36004009",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,80000-99999,80000-99999,60000-99999,50 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,2,North,None,200%,119%,"NY, 04009","In metro area, principal city",None,None,None,Hour11,127,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0128.osw,Non-CBSA New England,No,150%+,5A,5A,Hour3,None,4,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"CT, Litchfield County","G0900050, G09000500",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,99%,"CT, 00500",Not/partially in metro area,None,None,No,Hour12,132,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CT,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Oxford Awos,41.48,-73.13,F12 B12 L12 R12,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_national-0129.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,120-150%,1A,1A,Hour22,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Tamarac",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"FL, Broward County","G1200110, G12001105",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,106%,"FL, 01105","In metro area, not/partially in principal city",None,None,No,Hour17,102,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Premium,Electricity,Yes,Garage,Fort Lauderdale,26.2,-80.17,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0130.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour20,None,5,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback +4h,Not Applicable,"WI, Waukesha County","G5501330, G55070201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,85%,"WI, 70201","In metro area, not/partially in principal city",None,None,No,Hour10,79,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0131.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour7,None,3,Cold,None,None,East North Central,East North Central,Midwest,"IL, Evanston",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,76F,No,0F,None,Not Applicable,"IL, Cook County","G1700310, G17003421",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,85%,"IL, 03421","In metro area, not/partially in principal city",None,None,No,Hour12,80,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,IL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0132.osw,Non-CBSA South Atlantic,No,100-120%,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"FL, Escambia County","G1200330, G12003302",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,40 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southwest,None,100%,106%,"FL, 03302","In metro area, not/partially in principal city",None,None,No,Hour7,91,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Pensacola Regional Ap,30.48,-87.18,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0133.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour14,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Spring Valley",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,78F,No,0F,None,Not Applicable,"NV, Clark County","G3200030, G32000408",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,84%,"NV, 00408","In metro area, not/partially in principal city",None,None,No,Hour13,13,EF 17.6,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Las Vegas Mccarran Intl Ap,36.08,-115.15,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0134.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour18,None,3,Cold,None,None,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"PA, Monroe County","G4200890, G42000600",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,200%,101%,"PA, 00600","In metro area, not/partially in principal city",None,None,No,Hour12,122,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Heated Basement,Allentown Lehigh Valley Intl,40.65,-75.45,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0135.osw,Non-CBSA Pacific,No,120-150%,4C,4C,Hour10,None,3,Marine,None,Standard Efficiency,Pacific,Pacific,West,"WA, Olympia",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"WA, Thurston County","G5300670, G53011401",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,12F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,West,None,200%,94%,"WA, 11401","In metro area, not/partially in principal city",None,None,No,Hour10,1,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Olympia Airport,46.97,-122.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0136.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour4,None,3,Hot-Dry,None,None,Mountain,Mountain South,West,"NV, Henderson",Gas,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -2h,Not Applicable,"NV, Clark County","G3200030, G32000411",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,4 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,84%,"NV, 00411","In metro area, not/partially in principal city",None,None,No,Hour18,13,EF 19.9,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,NV,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Las Vegas Mccarran Intl Ap,36.08,-115.15,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0137.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,0-30%,4A,4A,Hour13,None,2,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"PA, Philadelphia",None,120% Usage,None,None,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Double-Loaded Interior,"PA, Philadelphia County","G4201010, G42003209",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,RFCEc,None,Left,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,Southwest,None,200%,89%,"PA, 03209","In metro area, principal city",None,None,None,Hour17,122,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Philadelphia Ne Philadelphia,40.08,-75.02,F30 B30 L30 R30,"Single, Clear, Metal"
+project_national-0138.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,150%+,2B,2B,Hour16,None,5,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, San Tan Valley",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,80F,No,0F,None,Not Applicable,"AZ, Pinal County","G0400210, G04000803",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,4 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR10,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,84%,"AZ, 00803","In metro area, not/partially in principal city",None,None,No,Hour13,28,EF 19.9,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Casa Granda Awos,32.95,-111.77,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0139.osw,Non-CBSA West North Central,No,100-120%,5A,5A,Hour18,None,4,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"IA, Cedar Rapids",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,75F,No,0F,None,Not Applicable,"IA, Linn County","G1901130, G19001000",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,MROWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 60% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-49,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,95%,"IA, 01000","In metro area, not/partially in principal city",None,None,No,Hour16,70,EF 17.6,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,IA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Cedar Rapids Municipal Ap,41.88,-91.72,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0140.osw,Non-CBSA New England,No,120-150%,6A,6A,Hour1,None,3,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"VT, Chittenden County","G5000070, G50000100",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,99%,"VT, 00100","In metro area, not/partially in principal city",None,None,No,Hour18,129,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VT,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Burlington International Ap,44.47,-73.15,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0141.osw,Non-CBSA Mountain,No,150%+,2B,2B,Hour1,None,4,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Yuma",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"AZ, Yuma County","G0400270, G04000700",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,200%,84%,"AZ, 00700","In metro area, not/partially in principal city",None,None,No,Hour18,28,EF 17.6,105% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Yuma Intl Arpt,32.67,-114.6,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0142.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour2,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003729",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,94%,"CA, 03729","In metro area, principal city",None,None,No,Hour15,10,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Single, Clear, Non-metal"
+project_national-0143.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour23,None,4,Cold,None,None,Mountain,Mountain North,West,"CO, Fort Collins",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Not Applicable,"CO, Larimer County","G0800690, G08000103",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,91%,"CO, 00103","In metro area, not/partially in principal city",None,None,No,Hour15,33,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CO,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Fort Collins Awos,40.45,-105.02,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_national-0144.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour4,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"FL, Osceola County","G1200970, G12009701",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,75F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,Has Pool,Other Fuel,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,106%,"FL, 09701","In metro area, not/partially in principal city",None,None,No,Hour9,101,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Orlando Intl Arpt,28.43,-81.33,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0145.osw,"CBSA Houston-The Woodlands-Sugar Land, TX",No,120-150%,2A,"2A - TX, LA",Hour10,None,3,Hot-Humid,None,None,West South Central,West South Central,South,"TX, Galveston",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"TX, Galveston County","G4801670, G48004701",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,78F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-7,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",ERCOT,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,113%,"TX, 04701","In metro area, not/partially in principal city",None,None,No,Hour9,67,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TX,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Outside,Houston Ellington Afb Clear L,29.57,-95.09,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0146.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour5,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback -3h,Not Applicable,"FL, Hillsborough County","G1200570, G12005708",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,50%,106%,"FL, 05708","In metro area, not/partially in principal city",None,None,No,Hour12,101,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Tampa International Ap,27.97,-82.53,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0147.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour20,None,5,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,Yes,2F,Night Setback,Not Applicable,"MI, Wayne County","G2601630, G26003201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,67F,Yes,6F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,85%,"MI, 03201","In metro area, not/partially in principal city",None,None,No,Hour11,103,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0148.osw,"CBSA Dallas-Fort Worth-Arlington, TX",No,120-150%,3A,3A,Hour17,None,2,Hot-Humid,None,Standard Efficiency,West South Central,West South Central,South,"TX, Dallas",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double-Loaded Interior,"TX, Dallas County","G4801130, G48002313",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,ERCTc,None,Middle,None,Middle,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Shared Cooling,100% Conditioned,Central AC,No,Heating and Cooling,No,Shared Heating,Ducted Heating,Electricity Shared Heating,None,None,None,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",ERCOT,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",4,2,West,None,200%,104%,"TX, 02313","In metro area, principal city",None,None,None,Hour22,63,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,TX,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,Yes,Living Space,Dallas Love Field,32.85,-96.85,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0149.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour16,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback -1h,Not Applicable,"FL, Volusia County","G1201270, G12012703",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,200-300%,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-13","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,North,None,100%,106%,"FL, 12703","In metro area, not/partially in principal city",None,None,No,Hour17,101,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,Daytona Beach Intl Ap,29.18,-81.07,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0150.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,Not Available,3B,3B,Hour23,None,2,Hot-Dry,16,"Standard Efficiency, No usage",Pacific,Pacific,West,In another census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"CA, San Bernardino County","G0600710, G06007104",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,Not Available,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,55F,Yes,6F,Night +2h,No Exterior Use,Uninsulated,100% Usage,Not Available,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,Not Available,Not Available,Not Available,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,0,Southwest,None,100%,94%,"CA, 07104","In metro area, not/partially in principal city",None,None,No,Hour8,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Not Available,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Vacant,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Riverside Muni,33.95,-117.45,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0151.osw,Non-CBSA Mountain,No,100-120%,6B,6B,Hour17,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"MT, Missoula",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"MT, Missoula County","G3000630, G30000200",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,6 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,200%,91%,"MT, 00200",Not/partially in metro area,None,None,No,Hour7,17,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MT,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Missoula International Ap,46.92,-114.1,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0152.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour18,None,4,Cold,None,Standard Efficiency,New England,New England,Northeast,"RI, Warwick",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,Yes,2F,Night Setback -1h,Not Applicable,"RI, Kent County","G4400030, G44000201",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",80% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% Incandescent,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,99%,"RI, 00201","In metro area, not/partially in principal city",None,None,No,Hour10,133,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,RI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Fuel Oil Standard,Fuel Oil,Yes,Living Space,Providence T F Green State Ar,41.72,-71.43,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0153.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour7,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,5F,Night Setback -5h,Not Applicable,"SC, Richland County","G4500790, G45000603",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Unvented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"SC, 00603","In metro area, not/partially in principal city",None,None,No,Hour16,96,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Columbia Metro Arpt,33.95,-81.12,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0154.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour23,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,"NC, Greenville",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"NC, Pitt County","G3701470, G37004200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Ambient,None,"Single-Family Detached, Ambient, No Attic, No Garage",1,1,<8,None,Brick,No,Electricity,70F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Ceiling R-13,None,None,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 15.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,South,None,100%,106%,"NC, 04200","In metro area, not/partially in principal city",None,None,No,Hour17,98,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Living Space,Pitt Greenville Arp,35.63,-77.4,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0155.osw,"CBSA Detroit-Warren-Dearborn, MI",No,0-30%,5A,5A,Hour5,None,3,Cold,None,None,East North Central,East North Central,Midwest,"MI, Detroit",Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,68F,Yes,5F,Night Setback +2h,Not Applicable,"MI, Wayne County","G2601630, G26003208",None,None,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,30 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,100%,85%,"MI, 03208","In metro area, principal city",None,None,No,Hour20,103,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Detroit Metropolitan Arpt,42.22,-83.35,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0156.osw,"CBSA Chicago-Naperville-Elgin, IL-IN-WI",No,150%+,5A,5A,Hour7,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IL, Chicago",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,60F,No,0F,None,Double-Loaded Interior,"IL, Cook County","G1700310, G17003525",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",6,4+,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,Southwest,None,100%,89%,"IL, 03525","In metro area, principal city",None,None,None,Hour6,80,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IL,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,No,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0157.osw,"CBSA Boston-Cambridge-Newton, MA-NH",No,150%+,5A,5A,Hour12,None,2,Cold,None,Standard Efficiency,New England,New England,Northeast,"MA, Boston",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,5F,Night Setback +4h,Double-Loaded Interior,"MA, Suffolk County","G2500250, G25003302",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,None,Middle,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",6,4+,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Electricity",No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-19","2ft R10 Under, Horizontal","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",4,2,Southwest,None,100%,94%,"MA, 03302","In metro area, principal city",None,None,None,Hour13,131,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MA,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Electric Standard,Electricity,No,None,Boston Logan IntL Arpt,42.37,-71.02,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0158.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour3,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"SC, Charleston",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"SC, Charleston County","G4500190, G45001202",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,106%,"SC, 01202","In metro area, not/partially in principal city",None,None,No,Hour16,96,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,SC,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Charleston Intl Arpt,32.9,-80.03,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0159.osw,Non-CBSA West North Central,No,150%+,4A,4A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"KS, Overland Park",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"KS, Johnson County","G2000910, G20000602",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,95%,"KS, 00602","In metro area, not/partially in principal city",None,None,No,Hour14,53,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,KS,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Olathe Johnson Co,38.85,-94.73,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0160.osw,Non-CBSA South Atlantic,No,100-120%,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"DE, Sussex County","G1000050, G10000300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Northwest,None,50%,106%,"DE, 00300","In metro area, not/partially in principal city",None,None,No,Hour18,125,EF 19.9,95% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,DE,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Salisbury-Ocean City-Wicomico Rgnl AP,38.333,-75.517,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0161.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,120-150%,1A,1A,Hour0,None,2,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Pompano Beach",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,76F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"FL, Broward County","G1200110, G12001104",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,Middle,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",3,3,<8,None,Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,200%,106%,"FL, 01104","In metro area, not/partially in principal city",None,None,None,Hour12,102,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,No,None,Fort Lauderdale,26.2,-80.17,F12 B12 L12 R12,"Single, Clear, Metal"
+project_national-0162.osw,Non-CBSA Middle Atlantic,No,100-120%,5A,5A,Hour23,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,68F,No,0F,None,Not Applicable,"NY, Erie County","G3600290, G36001207",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,100%,101%,"NY, 01207","In metro area, not/partially in principal city",None,None,No,Hour7,127,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Buffalo Niagara Intl Ap,42.93,-78.73,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0163.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour7,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Not Applicable,"FL, Bay County","G1200050, G12000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Electricity,76F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,8 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,106%,"FL, 00500",Not/partially in metro area,None,None,No,Hour6,91,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Panama City Bay Co,30.2,-85.68,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0164.osw,Non-CBSA Mountain,No,150%+,3B,3B,Hour23,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,76F,Yes,2F,Night Setback +3h,Not Applicable,"AZ, Mohave County","G0400150, G04000600",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,67F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",80% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,84%,"AZ, 00600",Not/partially in metro area,None,None,No,Hour19,27,EF 17.6,95% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Kingman Amos,35.27,-113.95,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0165.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour7,None,3,Hot-Dry,9,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Gas,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003734",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,1 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,75F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,100%,94%,"CA, 03734","In metro area, principal city",None,None,No,Hour15,10,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Garage,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Single, Clear, Metal"
+project_national-0166.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour3,None,3,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,No,0F,None,Not Applicable,"WI, Racine County","G5501010, G55030000",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,EF 19.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,85%,"WI, 30000","In metro area, not/partially in principal city",None,None,No,Hour18,79,EF 19.9,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Milwaukee Mitchell Intl Ap,42.95,-87.9,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0167.osw,Non-CBSA South Atlantic,No,120-150%,4A,4A,Hour22,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Newport News",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"VA, Newport News city","G5107000, G51051175",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,76F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"VA, 51175","In metro area, principal city",None,None,No,Hour19,99,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Newport News,37.13,-76.5,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0168.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour21,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"KY, Lexington-Fayette",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,Yes,5F,Night Setup +5h,Not Applicable,"KY, Fayette County","G2100670, G21001902",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unvented Crawlspace,2 Car,"Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,7 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,110%,"KY, 01902","In metro area, principal city",None,None,No,Hour14,109,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,KY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Lexington Bluegrass Ap,38.03,-84.6,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0169.osw,"CBSA Phoenix-Mesa-Scottsdale, AZ",No,80-100%,2B,2B,Hour14,None,3,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"AZ, Sun City",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,80F,No,0F,None,Not Applicable,"AZ, Maricopa County","G0400130, G04000130",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,AZNMc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR10,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,200%,84%,"AZ, 00130","In metro area, not/partially in principal city",None,None,No,Hour14,28,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Phoenix Sky Harbor Intl Ap,33.45,-111.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0170.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour7,None,3,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Columbia",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,67F,Yes,5F,Night Setback -5h,Not Applicable,"MO, Boone County","G2900190, G29000600",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,8 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,200%,95%,"MO, 00600","In metro area, not/partially in principal city",None,None,No,Hour18,72,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Columbia Regional Airport,38.82,-92.22,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0171.osw,Non-CBSA Middle Atlantic,No,100-120%,5A,5A,Hour8,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"PA, Butler County","G4200190, G42001600",None,None,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,100%,101%,"PA, 01600","In metro area, not/partially in principal city",None,None,No,Hour18,115,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Unheated Basement,Butler Co Awos,40.78,-79.95,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0172.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour5,None,5,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"FL, Polk County","G1201050, G12010502",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,3 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,Other Fuel,Has Pool,Natural Gas,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,106%,"FL, 10502","In metro area, not/partially in principal city",None,None,No,Hour9,101,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Lakeland Linder Rgn,27.98,-82.02,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0173.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour19,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,"FL, Spring Hill",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Not Applicable,"FL, Hernando County","G1200530, G12005301",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Brick,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,100%,106%,"FL, 05301","In metro area, not/partially in principal city",None,None,No,Hour14,101,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Living Space,Tampa International Ap,27.97,-82.53,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0174.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour7,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +2h,Not Applicable,"MO, St. Louis County","G2901890, G29001807",None,None,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,SRMWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,95%,"MO, 01807","In metro area, not/partially in principal city",None,None,No,Hour13,72,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,St Louis Lambert IntL Arpt,38.75,-90.37,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0175.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour10,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setup +5h,Not Applicable,"AL, Jefferson County","G0100730, G01001303",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,50%,110%,"AL, 01303","In metro area, not/partially in principal city",None,None,No,Hour17,89,EF 17.6,95% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Electric Standard,Electricity,Yes,Living Space,Birmingham Municipal Ap,33.57,-86.75,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0176.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour21,None,3,Mixed-Humid,None,None,East South Central,East South Central,South,"TN, Knoxville",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,72F,No,0F,None,Not Applicable,"TN, Knox County","G4700930, G47001603",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,110%,"TN, 01603","In metro area, not/partially in principal city",None,None,No,Hour12,92,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Knoxville Mcghee Tyson Ap,35.82,-83.98,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0177.osw,Non-CBSA Middle Atlantic,No,80-100%,6A,6A,Hour17,None,3,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, Utica",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"NY, Oneida County","G3600650, G36000402",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NYSTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,1 Car,"Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,101%,"NY, 00402","In metro area, not/partially in principal city",None,None,No,Hour13,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Utica Oneida County Ap,43.15,-75.38,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
+project_national-0178.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,0-30%,4A,4A,Hour7,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Double-Loaded Interior,"NY, Bronx County","G3600050, G36003709",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Aluminum, Light",Steel Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,Heating Only,No,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,<10000,<20000,<20000,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,North,None,100%,89%,"NY, 03709","In metro area, principal city",None,None,None,Hour20,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,FIXME Fuel Oil Indirect,Fuel Oil,No,None,New York Laguardia Arpt,40.78,-73.88,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0179.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour13,None,4,Hot-Humid,None,Standard Efficiency,East South Central,East South Central,South,"AL, Montgomery",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,Yes,2F,Night Setback,Not Applicable,"AL, Montgomery County","G0101010, G01002000",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"AL, 02000","In metro area, not/partially in principal city",None,None,No,Hour21,90,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Maxwell Afb,32.38,-86.35,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0180.osw,Non-CBSA East South Central,No,100-120%,2A,"2A - FL, GA, AL, MS",Hour12,None,3,Hot-Humid,None,None,East South Central,East South Central,South,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,5F,Night Setback -4h,Not Applicable,"AL, Baldwin County","G0100030, G01002600",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,50%,110%,"AL, 02600","In metro area, not/partially in principal city",None,None,No,Hour18,90,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Mobile Downtown Ap,30.63,-88.07,F12 B12 L12 R12,"Single, Clear, Metal"
+project_national-0181.osw,Non-CBSA Pacific,No,100-120%,3B,3B,Hour4,None,2,Hot-Dry,7,Standard Efficiency,Pacific,Pacific,West,"CA, San Diego",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,75F,Yes,2F,Night Setback +5h,Double-Loaded Interior,"CA, San Diego County","G0600730, G06007316",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,Middle,None,Middle,116,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,500-749,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",4,4+,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,Yes,"Electric Baseboard, 100% Efficiency",Non-Ducted Heating,Electricity Baseboard,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,2,West,None,50%,91%,"CA, 07316","In metro area, principal city",None,None,None,Hour11,11,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,No,None,San Diego Miramar Nas,32.87,-117.13,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0182.osw,Non-CBSA West North Central,No,80-100%,4A,4A,Hour11,None,4,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Kansas City",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,No,0F,None,Not Applicable,"MO, Jackson County","G2900950, G29001005",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southwest,None,100%,95%,"MO, 01005","In metro area, not/partially in principal city",None,None,No,Hour17,54,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Kansas City Downtown Ap,39.12,-94.6,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0183.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour14,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,76F,Yes,2F,Night Setback +5h,Not Applicable,"UT, Davis County","G4900110, G49011001",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,5 ACH50,R-49,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR05,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,91%,"UT, 11001","In metro area, not/partially in principal city",None,None,No,Hour7,25,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,UT,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Ogden Hill Afb,41.12,-111.97,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0184.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour0,None,2,Cold,None,None,East North Central,East North Central,Midwest,"IL, Champaign",Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,5F,Night Setback +3h,Not Applicable,"IL, Champaign County","G1700190, G17002100",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,SRMWc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Unvented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",<10% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northeast,None,200%,85%,"IL, 02100","In metro area, not/partially in principal city",None,None,No,Hour14,83,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,IL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Univ Of Illinois Wi Bondville,40.06,-88.37,F9 B9 L9 R9,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_national-0185.osw,Non-CBSA West North Central,No,0-30%,6A,6A,Hour18,None,1,Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,"MN, Minneapolis",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,70F,No,0F,None,Double-Loaded Interior,"MN, Hennepin County","G2700530, G27001407",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,0-100%,MROWc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 1-3 stories",Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,East,None,50%,86%,"MN, 01407","In metro area, principal city",None,None,None,Hour11,43,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MN,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2010s,2010s,Natural Gas Standard,Natural Gas,No,None,Minneapolis Crystal,45.07,-93.35,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0186.osw,Non-CBSA East South Central,No,150%+,3A,3A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Memphis",Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"TN, Shelby County","G4701570, G47003201",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,76F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,110%,"TN, 03201","In metro area, principal city",None,None,No,Hour10,92,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Premium,Electricity,Yes,Living Space,Memphis International Ap,35.07,-89.98,F6 B6 L6 R6,"Single, Clear, Non-metal"
+project_national-0187.osw,Non-CBSA Pacific,No,100-120%,4B,4B,Hour6,None,3,Mixed-Dry,12,Standard Efficiency,Pacific,Pacific,West,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"CA, El Dorado County","G0600170, G06001700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Propane,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,Gas Grill,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northeast,None,100%,94%,"CA, 01700","In metro area, not/partially in principal city",None,None,No,Hour0,9,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Propane Standard,Propane,Yes,Living Space,South Lake Tahoe,38.9,-120.0,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0188.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,2F,Night Setback +4h,Not Applicable,"FL, Martin County","G1200850, G12008500",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,"EF 12, National Average",None,None,None,None,Has Pool,Electricity,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"FL, 08500","In metro area, not/partially in principal city",None,None,No,Hour17,102,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Standard,Electricity,Yes,Garage,St Lucie Co Intl,27.48,-80.37,F12 B12 L12 R12,"Single, Clear, Metal"
+project_national-0189.osw,Non-CBSA Middle Atlantic,No,150%+,4A,4A,Hour2,None,4,Mixed-Humid,None,None,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"NJ, Cape May County","G3400090, G34002600",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,EF 17.6,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,101%,"NJ, 02600","In metro area, not/partially in principal city",None,None,No,Hour17,126,EF 19.9,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Cape May Co,39.0,-74.92,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0190.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour2,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,Yes,2F,Night Setback +1h,Not Applicable,"NC, Brunswick County","G3700190, G37004800",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,106%,"NC, 04800","In metro area, not/partially in principal city",None,None,No,Hour13,98,EF 15.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Wilmington International Arpt,34.27,-77.9,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0191.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour22,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Clarksville",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,78F,No,0F,None,Not Applicable,"TN, Montgomery County","G4701250, G47000300",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,72F,Yes,12F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"TN, 00300",Not/partially in metro area,None,None,No,Hour14,92,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Fort Campbell Aaf,36.67,-87.48,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0192.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour5,None,4,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,76F,Yes,2F,Night Setback +1h,Not Applicable,"VA, Prince William County","G5101530, G51051246",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,100%,106%,"VA, 51246","In metro area, not/partially in principal city",None,None,No,Hour4,99,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Manassas Muni Awos,38.72,-77.52,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0193.osw,"CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",No,150%+,4A,4A,Hour1,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"DC, Washington",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Double-Loaded Interior,"DC, District of Columbia","G1100010, G11000105",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,Right,None,Bottom,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Concrete,No,Electricity,68F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,None,None,None,"Finished, R-38","2ft R5 Perimeter, Vertical","CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,2,West,None,100%,106%,"DC, 00105","In metro area, principal city",None,None,None,Hour10,123,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,DC,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,No,None,Washington Dc Reagan Ap,38.87,-77.03,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0194.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour18,None,2,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"VA, Virginia Beach",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,Yes,2F,Night Setback -1h,Not Applicable,"VA, Virginia Beach city","G5108100, G51051165",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Unvented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,50%,106%,"VA, 51165","In metro area, principal city",None,None,No,Hour12,99,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,VA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Electric Premium,Electricity,Yes,Living Space,Oceana Nas,36.82,-76.03,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0195.osw,Non-CBSA East South Central,No,120-150%,4A,4A,Hour22,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,65F,No,0F,None,Not Applicable,"KY, Kenton County","G2101170, G21002400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,Gas Fireplace,None,Gas Lighting,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,110%,"KY, 02400","In metro area, not/partially in principal city",None,None,No,Hour14,109,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,KY,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Cincinnati Northern Ky Ap,39.05,-84.67,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0196.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour6,None,3,Hot-Dry,12,Standard Efficiency,Pacific,Pacific,West,"CA, Davis",Gas,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,78F,No,0F,None,Not Applicable,"CA, Yolo County","G0601130, G06011300",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% Incandescent,100% Usage,100% Usage,CR11,None,EF 17.6,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,94%,"CA, 11300","In metro area, not/partially in principal city",None,None,No,Hour17,9,EF 15.9,95% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Sacramento Metropolitan Ap,38.7,-121.58,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0197.osw,Non-CBSA Pacific,No,150%+,3B,3B,Hour5,None,4,Hot-Dry,7,Standard Efficiency,Pacific,Pacific,West,"CA, San Diego",Gas,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,5F,Night Setback -3h,Not Applicable,"CA, San Diego County","G0600730, G06007310",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",CAISO,100% LED,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,200%,94%,"CA, 07310","In metro area, not/partially in principal city",None,None,No,Hour18,11,EF 15.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,San Diego Miramar Nas,32.87,-117.13,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_national-0198.osw,Non-CBSA Mountain,No,30-60%,3B,3B,Hour6,None,2,Hot-Dry,None,Standard Efficiency,Mountain,Mountain South,West,"NV, Paradise",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,No,0F,None,Double-Loaded Interior,"NV, Clark County","G3200030, G32000409",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,150-200%,AZNMc,None,Middle,None,Top,67,None,50 or more Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",5,4+,<8,"Stucco, Light",Wood Frame,No,Electricity,68F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,Shared Cooling,100% Conditioned,Central AC,No,Heating and Cooling,No,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,25000-29999,20000-39999,20000-39999,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",12,2,West,None,100%,106%,"NV, 00409","In metro area, not/partially in principal city",None,None,None,Hour23,13,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NV,Renter,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Living Space,Las Vegas Mccarran Intl Ap,36.08,-115.15,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_national-0199.osw,Non-CBSA Pacific,No,150%+,5B,5B,Hour5,None,3,Cold,None,None,Pacific,Pacific,West,"OR, Bend",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,72F,Yes,9F,Night Setback +4h,Not Applicable,"OR, Deschutes County","G4100170, G41000400",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,No,Natural Gas,72F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-38,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR06,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,100%,94%,"OR, 00400","In metro area, not/partially in principal city",None,None,No,Hour15,5,EF 19.9,100% Usage,"Tile, Clay or Ceramic",558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Redmond Roberts Field,44.25,-121.17,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0200.osw,Non-CBSA South Atlantic,No,120-150%,2A,"2A - FL, GA, AL, MS",Hour2,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Cape Coral",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,80F,Yes,5F,Night Setback +5h,Not Applicable,"FL, Lee County","G1200710, G12007102",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,300-400%,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Brick,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Northwest,None,50%,106%,"FL, 07102","In metro area, not/partially in principal city",None,None,No,Hour7,101,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Fort Myers Page Field,26.58,-81.87,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0201.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour2,None,4,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"WI, Dane County","G5500250, G55000103",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,75F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,West,None,100%,85%,"WI, 00103","In metro area, not/partially in principal city",None,None,No,Hour17,78,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Madison Dane Co Regional Arpt,43.13,-89.33,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0202.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour1,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,68F,No,0F,None,Not Applicable,"SC, Greenville County","G4500450, G45000103",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Electricity,68F,Yes,3F,Night -4h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,200%,106%,"SC, 00103","In metro area, not/partially in principal city",None,None,No,Hour9,95,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Garage,Greenville Downtown Ap,34.85,-82.35,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0203.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour4,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",None,80% Usage,None,None,80% Usage,Gas,80% Usage,68F,No,0F,None,Double-Loaded Interior,"NY, New York County","G3600610, G36003808",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",12,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% Incandescent,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,1,South,None,50%,89%,"NY, 03808","In metro area, principal city",None,None,None,Hour21,127,EF 15.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Single, Clear, Metal"
+project_national-0204.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour3,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,78F,No,0F,None,Not Applicable,"MI, Saginaw County","G2601450, G26001500",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,68F,Yes,3F,Night -3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,100%,85%,"MI, 01500","In metro area, not/partially in principal city",None,None,No,Hour9,103,EF 17.6,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Saginaw Tri City Intl Ap,43.53,-84.08,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0205.osw,Non-CBSA East North Central,No,120-150%,5A,5A,Hour0,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"MI, Grand Rapids",Gas,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,Yes,5F,Night Setup +2h,Not Applicable,"MI, Kent County","G2600810, G26001002",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,85%,"MI, 01002","In metro area, not/partially in principal city",None,None,No,Hour10,103,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Grand Rapids Kent County Int,42.88,-85.52,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0206.osw,Non-CBSA Middle Atlantic,No,120-150%,5A,5A,Hour21,None,4,Cold,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,In another census Place,Electric,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,75F,Yes,2F,Night Setup +3h,Not Applicable,"PA, Allegheny County","G4200030, G42001804",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR07,None,EF 19.9,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,50%,101%,"PA, 01804","In metro area, not/partially in principal city",None,None,No,Hour22,115,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Pittsburgh Allegheny Co Ap,40.35,-79.92,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_national-0207.osw,Non-CBSA West North Central,No,150%+,4A,4A,Hour9,None,5,Mixed-Humid,None,Standard Efficiency,West North Central,West North Central,Midwest,"MO, Kansas City",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,65F,Yes,5F,Night Setback +4h,Not Applicable,"MO, Jackson County","G2900950, G29001001",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPNOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SPNOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",3,3,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,67F,Yes,3F,Night,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,Southeast,None,100%,95%,"MO, 01001","In metro area, principal city",None,None,No,Hour18,54,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Living Space,Kansas City Downtown Ap,39.12,-94.6,F6 B6 L6 R6,"Single, Clear, Metal"
+project_national-0208.osw,Non-CBSA Pacific,No,150%+,7AK,7AK,Hour3,None,3,Very Cold,None,Standard Efficiency,Pacific,Pacific,West,"AK, Anchorage",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"AK, Anchorage Municipality","G0200200, G02000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,,,,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,None,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,No,None,No,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CRAK,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,94%,"AK, 00102","In metro area, principal city",None,None,No,Hour9,None,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AK,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Anchorage Elmendorf,61.25,-149.8,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0209.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback +5h,Not Applicable,"NC, Alamance County","G3700010, G37001600",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,75F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,7 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,106%,"NC, 01600","In metro area, not/partially in principal city",None,None,No,Hour6,98,EF 15.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,NC,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Heated Basement,Danville Faa Ap,36.57,-79.33,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0210.osw,Non-CBSA New England,No,100-120%,6A,6A,Hour4,None,4,Cold,None,None,New England,New England,Northeast,Not in a census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"ME, York County","G2300310, G23000800",None,None,100% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,300-400%,NEWEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,No,Fuel Oil,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,99%,"ME, 00800","In metro area, not/partially in principal city",None,None,No,Hour15,134,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,ME,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Fuel Oil Standard,Fuel Oil,Yes,Unheated Basement,Sanford Muni Awos,43.4,-70.72,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0211.osw,Non-CBSA South Atlantic,No,0-30%,3A,3A,Hour5,None,3,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"GA, Macon",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Not Applicable,"GA, Bibb County","G1300210, G13001400",None,None,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,0-100%,SRSOc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,East,None,100%,106%,"GA, 01400","In metro area, not/partially in principal city",None,None,No,Hour12,94,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Living Space,Macon Middle Ga Regional Ap,32.68,-83.65,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_national-0212.osw,"CBSA Detroit-Warren-Dearborn, MI",No,150%+,5A,5A,Hour6,None,4,Cold,None,None,East North Central,East North Central,Midwest,Not in a census Place,Gas,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,68F,No,0F,None,Not Applicable,"MI, Livingston County","G2600930, G26002800",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,None,Brick,No,Natural Gas,65F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,85%,"MI, 02800","In metro area, not/partially in principal city",None,None,No,Hour19,103,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Living Space,Howell,42.63,-83.98,F18 B18 L18 R18,"Double, Clear, Metal, Air"
+project_national-0213.osw,Non-CBSA New England,No,120-150%,5A,5A,Hour23,None,3,Cold,None,Standard Efficiency,New England,New England,Northeast,"RI, Pawtucket",Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"RI, Providence County","G4400070, G44000102",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night +2h,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,200%,99%,"RI, 00102","In metro area, not/partially in principal city",None,None,No,Hour17,133,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,RI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Pawtucket Awos,41.92,-71.5,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0214.osw,Non-CBSA New England,No,100-120%,5A,5A,Hour18,None,3,Cold,None,None,New England,New England,Northeast,"MA, Worcester",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,60F,No,0F,None,Not Applicable,"MA, Worcester County","G2500270, G25000300",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",60% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NEISO,100% LED,100% Usage,100% Usage,CR03,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,99%,"MA, 00300","In metro area, principal city",None,None,No,Hour16,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Worchester Regional Arpt,42.27,-71.88,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0215.osw,Non-CBSA West North Central,No,150%+,7A,7A,Hour6,None,3,Very Cold,None,Standard Efficiency,West North Central,West North Central,Midwest,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"MN, St. Louis County","G2701370, G27000400",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,50%,95%,"MN, 00400",Not/partially in metro area,None,None,No,Hour2,43,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MN,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Duluth International Arpt,46.83,-92.22,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0216.osw,"CBSA Riverside-San Bernardino-Ontario, CA",No,150%+,3B,3B,Hour19,None,3,Hot-Dry,15,Standard Efficiency,Pacific,Pacific,West,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Gas,120% Usage,75F,No,0F,None,Not Applicable,"CA, Riverside County","G0600650, G06006515",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,70F,Yes,6F,Night +5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,5 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Southeast,None,200%,94%,"CA, 06515","In metro area, not/partially in principal city",None,None,No,Hour12,10,EF 17.6,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,March Afb,33.9,-117.25,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_national-0217.osw,Non-CBSA East North Central,No,100-120%,6A,6A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback +3h,Not Applicable,"WI, Dane County","G5500250, G55000102",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,15 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR02,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,East,None,100%,85%,"WI, 00102","In metro area, not/partially in principal city",None,None,No,Hour18,78,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Madison Dane Co Regional Arpt,43.13,-89.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0218.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, West Palm Beach",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,68F,Yes,2F,Night Setback,Not Applicable,"FL, Palm Beach County","G1200990, G12009903",None,None,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,None,Brick,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,106%,"FL, 09903","In metro area, not/partially in principal city",None,None,No,Hour0,102,EF 15.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Outside,West Palm Beach Intl Arpt,26.68,-80.1,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0219.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour5,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Not Applicable,"FL, Indian River County","G1200610, G12006100",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",1,1,<8,None,Brick,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Southwest,None,200%,106%,"FL, 06100","In metro area, not/partially in principal city",None,None,No,Hour11,102,EF 19.9,105% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Premium,Electricity,Yes,Garage,Vero Beach Municipal Arpt,27.65,-80.42,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0220.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour0,None,3,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,70F,No,0F,None,Not Applicable,"GA, DeKalb County","G1300890, G13002003",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,6F,Night -1h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-13,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,50%,106%,"GA, 02003","In metro area, not/partially in principal city",None,None,No,Hour18,94,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Dekalb Peachtree,33.87,-84.3,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0221.osw,Non-CBSA Pacific,No,150%+,4C,4C,Hour6,None,4,Marine,None,Standard Efficiency,Pacific,Pacific,West,"OR, Portland",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,70F,No,0F,None,Not Applicable,"OR, Multnomah County","G4100510, G41001314",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NWPPc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NWPPc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR06,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,West,None,100%,94%,"OR, 01314","In metro area, not/partially in principal city",None,None,No,Hour13,5,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OR,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Living Space,Portland International Ap,45.6,-122.62,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0222.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour3,None,2,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,Not in a census Place,Gas,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,75F,No,0F,None,Not Applicable,"MI, Macomb County","G2600990, G26003004",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Brick,No,Natural Gas,67F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 10.7",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,85%,"MI, 03004","In metro area, not/partially in principal city",None,None,No,Hour5,103,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1970s,1960-79,Natural Gas Standard,Natural Gas,Yes,Living Space,Mount Clemens Selfridge Fld,42.62,-82.83,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0223.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour3,None,4,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Brandon",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,76F,No,0F,None,Not Applicable,"FL, Hillsborough County","G1200570, G12005707",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Vinyl, Light",Wood Frame,No,Electricity,70F,Yes,3F,Night +4h,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,20 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,100%,106%,"FL, 05707","In metro area, not/partially in principal city",None,None,No,Hour10,101,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Attic,Tampa International Ap,27.97,-82.53,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0224.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,100-120%,2A,"2A - FL, GA, AL, MS",Hour20,None,3,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,76F,No,0F,None,Not Applicable,"FL, Palm Beach County","G1200990, G12009906",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Slab,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,EF 17.6,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,South,None,50%,106%,"FL, 09906","In metro area, not/partially in principal city",None,None,No,Hour8,102,EF 17.6,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Electric Standard,Electricity,Yes,Garage,West Palm Beach Intl Arpt,26.68,-80.1,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0225.osw,Non-CBSA South Atlantic,No,150%+,4A,4A,Hour5,None,5,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"NC, Durham",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,No,0F,None,Not Applicable,"NC, Durham County","G3700630, G37001301",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,North,None,200%,106%,"NC, 01301","In metro area, not/partially in principal city",None,None,No,Hour18,98,EF 17.6,105% Usage,"Tile, Concrete",558588.08,1,1,2007,31,12,60,None,NC,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Raleigh Durham International,35.87,-78.78,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0226.osw,Non-CBSA West South Central,No,120-150%,3A,3A,Hour3,None,3,Mixed-Humid,None,None,West South Central,West South Central,South,"OK, Oklahoma City",Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,80F,No,0F,None,Not Applicable,"OK, Oklahoma County","G4001090, G40001002",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SPSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SPSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +3h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",SPP,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",Gas Fireplace,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,113%,"OK, 01002","In metro area, not/partially in principal city",None,None,No,Hour17,50,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,OK,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Natural Gas Standard,Natural Gas,Yes,Outside,Oklahoma City Wiley,35.53,-97.65,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0227.osw,Non-CBSA South Atlantic,No,150%+,3A,3A,Hour5,None,5,Hot-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,70F,Yes,2F,Night Setback +2h,Not Applicable,"SC, Beaufort County","G4500130, G45001400",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRVCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRVCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",1,1,<8,None,Brick,No,Electricity,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,8 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,200%,106%,"SC, 01400","In metro area, not/partially in principal city",None,None,No,Hour18,96,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,SC,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Beaufort Mcas,32.48,-80.72,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0228.osw,"CBSA Atlanta-Sandy Springs-Roswell, GA",No,150%+,3A,3A,Hour22,None,5,Mixed-Humid,None,None,South Atlantic,South Atlantic,South,Not in a census Place,Gas,80% Usage,Standard,Yes,80% Usage,Gas,80% Usage,72F,No,0F,None,Not Applicable,"GA, Forsyth County","G1301170, G13003300",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,400%+,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Vented Crawlspace,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,68F,Yes,6F,Night +4h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,3 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,EF 19.9,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,50%,106%,"GA, 03300","In metro area, not/partially in principal city",None,None,No,Hour16,94,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,GA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Dekalb Peachtree,33.87,-84.3,F9 B9 L9 R9,"Double, Clear, Non-metal, Air"
+project_national-0229.osw,Non-CBSA South Atlantic,No,100-120%,4A,4A,Hour9,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Not Applicable,"WV, Kanawha County","G5400390, G54001000",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,68F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,50000-59999,40000-59999,40000-59999,40 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"WV, 01000","In metro area, not/partially in principal city",None,None,No,Hour17,117,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,WV,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Living Space,Charleston Yeager Arpt,38.38,-81.58,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0230.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Gas,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -2h,Not Applicable,"NJ, Essex County","G3400130, G34001402",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,101%,"NJ, 01402","In metro area, not/partially in principal city",None,None,No,Hour18,126,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NJ,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Premium,Natural Gas,Yes,Unheated Basement,Newark International Arpt,40.72,-74.18,F6 B6 L6 R6,"Single, Clear, Non-metal"
+project_national-0231.osw,Non-CBSA Mountain,No,120-150%,4B,4B,Hour23,None,5,Mixed-Dry,None,None,Mountain,Mountain South,West,In another census Place,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,72F,No,0F,None,Not Applicable,"AZ, Yavapai County","G0400250, G04000500",None,318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/AZNMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,300-400%,AZNMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,5 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR10,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,East,None,50%,84%,"AZ, 00500","In metro area, not/partially in principal city",None,None,No,Hour11,28,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,AZ,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Garage,Prescott Love Field,34.65,-112.42,F15 B15 L15 R15,"Double, Clear, Metal, Air"
+project_national-0232.osw,"CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",No,150%+,4A,4A,Hour20,None,4,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,Not in a census Place,Electric,100% Usage,Standard,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"PA, Bucks County","G4200170, G42003004",None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCEc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",1,1,<8,None,Brick,No,Fuel Oil,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"Room AC, EER 12.0",40% Conditioned,Room AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,No,None,None,None,None,120000-139999,120000-139999,100000-149999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",PJM,100% LED,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,100%,101%,"PA, 03004","In metro area, not/partially in principal city",None,None,No,Hour15,122,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,PA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Premium,Electricity,Yes,Heated Basement,Willow Grove Nas,40.2,-75.15,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_national-0233.osw,Non-CBSA Mountain,No,150%+,5B,5B,Hour21,None,4,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"CO, Denver",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,No,0F,None,Not Applicable,"CO, Denver County","G0800310, G08000812",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,67F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,100% Usage,No,None,None,None,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,91%,"CO, 00812","In metro area, principal city",None,None,No,Hour20,33,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CO,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Aurora Buckley Field Angb,39.72,-104.75,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0234.osw,Non-CBSA West North Central,No,0-30%,4A,4A,Hour2,None,3,Mixed-Humid,None,None,West North Central,West North Central,Midwest,"MO, St Louis",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,Yes,2F,Night Setback -4h,Not Applicable,"MO, St. Louis city","G2905100, G29001901",None,None,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,0-100%,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,6F,Night -2h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,<10000,<20000,<20000,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,North,None,200%,95%,"MO, 01901","In metro area, principal city",None,None,No,Hour16,72,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MO,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Heated Basement,Cahokia St Louis,38.57,-90.15,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_national-0235.osw,"CBSA Miami-Fort Lauderdale-West Palm Beach, FL",No,150%+,1A,1A,Hour19,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, Fort Lauderdale",Electric,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,78F,No,0F,None,Not Applicable,"FL, Broward County","G1200110, G12001108",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,75F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% CFL,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,Has Pool,None,1.0 HP Pump,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,North,None,100%,106%,"FL, 01108","In metro area, not/partially in principal city",None,None,No,Hour10,102,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Tankless,Electricity,Yes,Living Space,Fort Lauderdale,26.2,-80.17,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0236.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour3,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,In another census Place,Electric,100% Usage,Standard,Yes,100% Usage,Propane,100% Usage,75F,No,0F,None,Not Applicable,"FL, Lee County","G1200710, G12007101",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Unvented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Electricity,70F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,100%,106%,"FL, 07101","In metro area, not/partially in principal city",None,None,No,Hour5,101,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Fort Myers Page Field,26.58,-81.87,F15 B15 L15 R15,"Single, Clear, Metal"
+project_national-0237.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour21,None,3,Hot-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"FL, St Petersburg",Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"FL, Pinellas County","G1201030, G12010307",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",2,2,<8,"Stucco, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% LED,100% Usage,100% Usage,CR09,None,None,None,None,None,None,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,50%,106%,"FL, 10307","In metro area, principal city",None,None,No,Hour8,101,EF 19.9,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,FL,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,St Petersburg Clear,27.9,-82.68,F6 B6 L6 R6,"Single, Clear, Non-metal"
+project_national-0238.osw,Non-CBSA Pacific,No,150%+,3C,3C,Hour17,None,3,Marine,5,None,Pacific,Pacific,West,In another census Place,Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,80F,No,0F,None,Not Applicable,"CA, San Luis Obispo County","G0600790, G06007901",None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",2,2,<8,"Stucco, Light",Wood Frame,No,Natural Gas,65F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,50% Usage,No,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11","Summer = 0.7, Winter = 0.85",CAISO,100% CFL,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,5,Southeast,None,50%,94%,"CA, 07901","In metro area, not/partially in principal city",None,None,No,Hour6,9,EF 17.6,95% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CA,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,San Luis Co Rgnl,35.23,-120.63,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_national-0239.osw,Non-CBSA West North Central,No,120-150%,4A,4A,Hour0,None,2,Mixed-Humid,None,None,West North Central,West North Central,Midwest,"MO, St Louis",Gas,100% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,75F,No,0F,None,Not Applicable,"MO, St. Louis city","G2905100, G29001902",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRMWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRMWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",2,2,<8,None,Brick,No,Natural Gas,75F,Yes,3F,Night -1h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,30 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR08,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,95%,"MO, 01902","In metro area, principal city",None,None,No,Hour16,72,EF 17.6,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MO,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Heated Basement,Cahokia St Louis,38.57,-90.15,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0240.osw,Non-CBSA East North Central,No,150%+,5A,5A,Hour1,None,3,Cold,None,Standard Efficiency,East North Central,East North Central,Midwest,"IN, Lafayette",Electric,100% Usage,Standard,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +5h,Not Applicable,"IN, Tippecanoe County","G1801570, G18001200",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",1,1,<8,None,Brick,No,Natural Gas,70F,Yes,12F,Night +2h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,North,None,100%,85%,"IN, 01200","In metro area, not/partially in principal city",None,None,No,Hour15,105,EF 19.9,100% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,IN,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1990s,1980-99,Natural Gas Standard,Natural Gas,Yes,Garage,Lafayette Purdue Univ Ap,40.42,-86.93,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0241.osw,Non-CBSA South Atlantic,No,150%+,2A,"2A - FL, GA, AL, MS",Hour1,None,2,Hot-Humid,None,None,South Atlantic,South Atlantic,South,In another census Place,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,78F,Yes,2F,Night Setback -2h,Not Applicable,"FL, Brevard County","G1200090, G12000901",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/FRCCc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Southern,400%+,FRCCc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,70F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,200% Usage,No,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,No,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,10 ACH50,R-19,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,None,None,None,None,Electricity,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,106%,"FL, 00901","In metro area, not/partially in principal city",None,None,No,Hour14,102,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,FL,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Electric Standard,Electricity,Yes,Garage,Melbourne Regional Ap,28.12,-80.65,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0242.osw,Non-CBSA South Atlantic,No,120-150%,3A,3A,Hour0,None,4,Mixed-Humid,None,Standard Efficiency,South Atlantic,South Atlantic,South,"GA, Columbus",Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,120% Usage,68F,Yes,5F,Night Setback -2h,Not Applicable,"GA, Muscogee County","G1302150, G13001700",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRSOc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,South-Central,300-400%,SRSOc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",1,1,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,60000-69999,60000-79999,60000-99999,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR09,None,None,"EF 12, National Average",None,Gas Grill,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,Northwest,None,200%,106%,"GA, 01700","In metro area, not/partially in principal city",None,None,No,Hour17,94,EF 17.6,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,GA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1960s,1960-79,Electric Standard,Electricity,Yes,Living Space,Columbus Metropolitan Arpt,32.52,-84.95,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0243.osw,"CBSA Detroit-Warren-Dearborn, MI",No,120-150%,5A,5A,Hour20,None,3,Cold,None,None,East North Central,East North Central,Midwest,In another census Place,Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,70F,Yes,9F,Night Setback -5h,Not Applicable,"MI, Oakland County","G2601250, G26002908",None,None,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCMc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RFCMc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,No,Natural Gas,70F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,20 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% LED,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,200%,85%,"MI, 02908","In metro area, not/partially in principal city",None,None,No,Hour18,103,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,MI,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Electric Standard,Electricity,Yes,Living Space,Oakland Co Intl,42.67,-83.42,F18 B18 L18 R18,"Double, Clear, Non-metal, Air"
+project_national-0244.osw,Non-CBSA East North Central,No,150%+,6A,6A,Hour3,None,3,Cold,None,None,East North Central,East North Central,Midwest,"WI, Oshkosh",Electric,80% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,68F,No,0F,None,Not Applicable,"WI, Winnebago County","G5501390, G55001501",None,None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/MROEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,MROEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,70F,Yes,3F,Night -5h,No Exterior Use,Uninsulated,50% Usage,No,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,No,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,100000-119999,100000-119999,100000-149999,25 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.85",MISO,100% Incandescent,100% Usage,100% Usage,CR02,None,EF 17.6,None,None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,West,None,50%,85%,"WI, 01501","In metro area, not/partially in principal city",None,None,No,Hour8,76,EF 19.9,95% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,WI,Owner,1,Low,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Wittman Rgnl,43.98,-88.55,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_national-0245.osw,Non-CBSA New England,No,150%+,5A,5A,Hour4,None,5,Cold,None,Standard Efficiency,New England,New England,Northeast,In another census Place,Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setup +4h,Not Applicable,"MA, Barnstable County","G2500010, G25004700",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, Uninsulated",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NEWEc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,NEWEc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",NEISO,100% CFL,100% Usage,100% Usage,CR03,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,4,South,None,100%,99%,"MA, 04700","In metro area, not/partially in principal city",None,None,No,Hour18,131,EF 19.9,100% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,MA,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1980s,1980-99,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Barnstable Muni Boa,41.67,-70.28,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0246.osw,Non-CBSA East North Central,No,150%+,4A,4A,Hour2,None,3,Mixed-Humid,None,None,East North Central,East North Central,Midwest,"IN, Evansville",Gas,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"IN, Vanderburgh County","G1801630, G18003300",None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 10",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",MISO,100% CFL,100% Usage,100% Usage,CR04,None,None,"EF 12, National Average",None,None,None,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Left/Right at 15ft,1,Southeast,None,200%,85%,"IN, 03300","In metro area, not/partially in principal city",None,None,No,Hour16,107,EF 19.9,105% Usage,Wood Shingles,558588.08,1,1,2007,31,12,60,None,IN,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Electric Standard,Electricity,Yes,Living Space,Evansville Regional Ap,38.05,-87.53,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_national-0247.osw,"CBSA Los Angeles-Long Beach-Anaheim, CA",No,150%+,3B,3B,Hour16,None,3,Hot-Dry,6,Standard Efficiency,Pacific,Pacific,West,"CA, Los Angeles",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,80F,No,0F,None,Not Applicable,"CA, Los Angeles County","G0600370, G06003748",None,None,120% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-4",Attic,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,CAMXc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Slab,None,"Single-Family Detached, Slab, Vented Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Natural Gas,68F,Yes,6F,Night -5h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR11,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,3,Northwest,None,200%,94%,"CA, 03748","In metro area, not/partially in principal city",None,None,No,Hour14,10,EF 19.9,105% Usage,Composition Shingles,558588.08,1,1,2007,31,12,60,None,CA,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,1950s,1940-59,Natural Gas Standard,Natural Gas,Yes,Outside,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_national-0248.osw,Non-CBSA Mountain,No,120-150%,5B,5B,Hour19,None,3,Cold,None,Standard Efficiency,Mountain,Mountain North,West,"CO, Greeley",Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,75F,No,0F,None,Not Applicable,"CO, Weld County","G0801230, G08000300",None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"10% Leakage to Outside, R-8",Garage,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RMPAc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,Northern,400%+,RMPAc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,4000+,4000+,Slab,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +1h,No Exterior Use,Uninsulated,200% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,80000-99999,80000-99999,60000-99999,3 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR05,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,South,None,200%,91%,"CO, 00300","In metro area, not/partially in principal city",None,None,No,Hour9,33,EF 17.6,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,CO,Owner,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Premium,Natural Gas,Yes,Garage,Greeley Weld Awos,40.43,-104.63,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_national-0249.osw,Non-CBSA East South Central,No,150%+,4A,4A,Hour0,None,3,Mixed-Humid,None,Standard Efficiency,East South Central,East South Central,South,"TN, Franklin",Electric,100% Usage,EnergyStar,Yes,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +3h,Not Applicable,"TN, Williamson County","G4701870, G47002600",None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"20% Leakage to Outside, R-6",Unheated Basement,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/SRTVc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,SRTVc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Unheated Basement,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Natural Gas,72F,Yes,3F,Night +5h,No Exterior Use,Uninsulated,100% Usage,No,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,No,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,No,None,None,None,None,200000+,140000+,150000+,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.85",None,100% Incandescent,100% Usage,100% Usage,CR08,None,None,"EF 12, National Average",None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",Left/Right at 15ft,2,East,None,100%,110%,"TN, 02600","In metro area, not/partially in principal city",None,None,No,Hour12,92,EF 17.6,100% Usage,"Metal, Dark",558588.08,1,1,2007,31,12,60,None,TN,Owner,1,Medium,,,,,,,,,,,,,,,,,Bills,,,,Occupied,2000s,2000-09,Natural Gas Standard,Natural Gas,Yes,Unheated Basement,Nashville International Ap,36.12,-86.68,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_national-0250.osw,"CBSA New York-Newark-Jersey City, NY-NJ-PA",No,150%+,4A,4A,Hour19,None,1,Mixed-Humid,None,Standard Efficiency,Middle Atlantic,Middle Atlantic,Northeast,"NY, New York",Electric,120% Usage,Standard,Yes,120% Usage,Gas,120% Usage,75F,Yes,9F,Night Setback +2h,Double-Loaded Interior,"NY, New York County","G3600610, G36003807",None,None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,,,,LRMER_MidCase_15,CO2e,,North-Central,400%+,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1000-1499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",8,4+,8+,"Aluminum, Light",Steel Frame,No,Natural Gas,72F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,No,"Room AC, EER 9.8",20% Conditioned,Room AC,No,Heating Only,No,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,200000+,140000+,150000+,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.85",NYISO,100% CFL,100% Usage,100% Usage,CR07,None,None,None,None,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",7,1,East,None,200%,89%,"NY, 03807","In metro area, principal city",None,None,None,Hour19,127,EF 19.9,105% Usage,"Asphalt Shingles, Medium",558588.08,1,1,2007,31,12,60,None,NY,Renter,1,High,,,,,,,,,,,,,,,,,Bills,,,,Occupied,<1940,<1940,Natural Gas Standard,Natural Gas,No,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air"
+project_testing-0001.osw,,,,5A,,Hour4,"20 kWh, 80% Round Trip Efficiency",1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,120% Usage,None,None,100% Usage,Gas,80% Usage,78F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,40 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Slab,None,"Single-Family Detached, Slab, No Attic, No Garage",1,1,<8,"Stucco, Light",Brick,No,Other Fuel,73F,No,0F,None,None,R-2,200% Usage,,"AC, SEER 13",100% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,No,None,None,None,None,,,,5 ACH50,None,None,None,None,"Finished, R-49","2ft R5 Perimeter, Vertical","Brick, 12-in, 3-wythe, R-11","Summer = 0.5, Winter = 0.7",,None,None,None,,"HRV, 60%",EF 21.9,None,None,None,Gas Lighting,None,Has Pool,Natural Gas,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",None,0,Northwest,"2ft, Right Windows",50%,84%,,,None,None,None,Hour8,80,EF 15.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,FIXME Fuel Oil Indirect,,,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0002.osw,,,,2A,,Hour21,None,3,,,Premium Efficiency,,,South,,Propane,80% Usage,Standard,Yes,100% Usage,Electric Induction,80% Usage,77F,No,0F,None,None,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,Yes,Natural Gas,55F,No,0F,None,No Exterior Use,R-2,100% Usage,,"Room AC, EER 9.8",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,<10% Conditioned,None,No,None,None,None,None,,,,30 ACH50,None,None,None,None,"Finished, R-7","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 10.5,None,Gas Fireplace,None,Gas Lighting,None,None,None,None,National Average,None,27,0,NNE,"2ft, Left Windows",75%,97%,,,Northeast,5.0 kWDC,None,Hour6,67,EF 10.5,100% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Electric Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Clear, Non-metal, Air"
+project_testing-0003.osw,,,,5A,,Hour18,"20 kWh, Outside",2,,,"Standard Efficiency, No usage",,,Midwest,,Gas,120% Usage,None,None,120% Usage,None,80% Usage,69F,Yes,5F,Night Setback,Double-Loaded Interior,"IL, Cook County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Wood,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",20,4+,8+,"Vinyl, Light",Concrete,No,Fuel Oil,72F,Yes,6F,Day and Night +2h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,None,Yes,700.2 cfm/ton,0.570 Charge Frac,254.0 cfm/ton,0.988 Charge Frac,,,,11.25 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-7","Summer = 0.5, Winter = 0.7",,100% CFL,95% Usage,95% Usage,,None,EF 21.9,None,Gas Fireplace,Gas Grill,National Average,Electricity,None,None,None,Typical Efficiency,None,27,0,WNW,"2ft, Front Windows",100%,85%,,,None,None,None,Hour17,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,Chicago Midway Ap,41.78,-87.75,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0004.osw,,,,5A,,Hour0,10 kWh,5,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,None,100% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,70F,Yes,2F,Day Setup -4h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",None,100% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2000-2499,1500-2499,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Light",Concrete,No,Electricity,65F,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,Non-Ducted Heat Pump,60% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 14.5, 8.2 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,Yes,551.5 cfm/ton,0.709 Charge Frac,551.5 cfm/ton,1.266 Charge Frac,,,,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-19","Summer = 0.7, Winter = 0.95",,20% LED,95% Usage,100% Usage,,None,None,None,None,National Average,None,Natural Gas,None,None,None,None,"Cooling Season, 7 days/wk",4,0,SSE,"2ft, Left Windows",50%,103%,,,None,None,None,Hour15,80,EF 19.9,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Double, Clear, Metal, Air"
+project_testing-0005.osw,,,,5A,,Hour12,10 kWh,2,,,None,,,Midwest,,Propane,120% Usage,Standard,Yes,80% Usage,None,100% Usage,73F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unvented Crawlspace,None,"Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage",3,3,<8,"Wood, Medium/Dark",Steel Frame,Yes,None,68F,No,0F,None,None,R-2,"100% Usage, Low Flow",,"Room AC, EER 9.8",80% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,15 ACH50,Uninsulated,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.6, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 10.2,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,None,None,None,None,None,High Efficiency,None,12,4,NNW,"2ft, Left Windows",400%,96%,,,West,11.0 kWDC,No,Hour22,80,None,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Electric Standard,,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0006.osw,,,,3B,,Hour23,"20 kWh, Outside",3,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,100% Usage,None,120% Usage,75F,No,0F,None,Double Exterior,"CA, Los Angeles County",,None,290 Rated kWh,100% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Crawlspace,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Bottom,9,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Vented Crawlspace,None,"Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Wood, Medium/Dark",Wood Frame,No,Natural Gas,64F,Yes,12F,Day and Night,No Exterior Use,Uninsulated,100% Usage,,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,None,Yes,501.9 cfm/ton,0.709 Charge Frac,154.8 cfm/ton,0.709 Charge Frac,,,,0.25 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 6.7,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,None,National Average,Natural Gas,Has Pool,Other Fuel,National Average,National Average,"Cooling Season, 7 days/wk",None,0,ENE,None,100%,166%,,,None,None,None,Hour18,10,EF 17.6,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_testing-0007.osw,,,,3B,,Hour7,"20 kWh, 80% Round Trip Efficiency",4,,,Standard Efficiency,,,West,,None,100% Usage,EnergyStar,Yes,100% Usage,Gas,80% Usage,65F,No,0F,None,Double Exterior,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,20 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Stucco, Light",Steel Frame,Yes,Electricity,62F,Yes,3F,Day and Night,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"Room AC, EER 9.8",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Electricity",Yes,452.3 cfm/ton,1.127 Charge Frac,303.5 cfm/ton,1.266 Charge Frac,,,,5.25 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.7, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,Supply,EF 10.2,"EF 18, 2008 Energy Star",None,None,None,Electricity,Has Pool,Other Fuel,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",None,0,South,"2ft, Back Windows",100%,82%,,,Southeast,9.0 kWDC,None,Hour17,10,EF 10.5,105% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,None,CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Tankless,,,Living Space,Jack Northrop Fld H,33.92,-118.33,None,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0008.osw,,,,4A,,Hour1,"20 kWh, Outside",2,,,Standard Efficiency,,,Northeast,,Propane,100% Usage,EnergyStar,Yes,120% Usage,Electric Induction,100% Usage,65F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",11,4+,8+,"Wood, Medium/Dark",Brick,Yes,Propane,76F,No,0F,None,No Exterior Use,"R-5, Timer",50% Usage,,Shared Cooling,40% Conditioned,Central AC,Yes,Cooling Only,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Propane Fuel Furnace,"Electric Portable Heater, 100% Efficiency",Electricity,<10% Conditioned,Fan Coil Cooling Only,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Ceiling R-30,"Wall R-13, Interior","R-13, Interior","Finished, R-30",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 10.2,"EF 12, National Average",National Average,National Average,National Average,None,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",27,3,WNW,"2ft, All Windows",75%,110%,,,Northeast,3.0 kWDC,None,Hour17,127,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Electric Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0009.osw,,,,2A,,Hour0,10 kWh,2,,,None,,,South,,None,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,77F,Yes,9F,Night Setback +2h,Not Applicable,"TX, Harris County",,None,318 Rated kWh,80% Usage,40 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Attic,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Slab,None,"Single-Family Detached, Slab, Unvented Attic, No Garage",1,1,<8,"Stucco, Light",Brick,Yes,Electricity,66F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,Ducted Heat Pump,80% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,None,No,None,None,None,None,,,,20 ACH50,Uninsulated,None,None,None,"Unfinished, Uninsulated","R10 Whole Slab, Horizontal","Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 15.9,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,National Average,Natural Gas,None,None,None,None,None,4,10+,Southwest,"2ft, Front Windows",25%,82%,,,East,1.0 kWDC,No,Hour14,67,EF 21.9,105% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Propane Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Clear, Non-metal, Air"
+project_testing-0010.osw,,,,2A,,Hour7,10 kWh,5,,,"Standard Efficiency, No usage",,,South,,Propane,100% Usage,EnergyStar,Yes,120% Usage,Gas,80% Usage,76F w/ Building America season,Yes,5F,Day and Night Setup,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",21,4+,8+,"Shingle, Composition, Medium",Brick,Yes,Natural Gas,66F,Yes,12F,Day and Night -2h,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,"Room AC, EER 8.5",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.5 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.95",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 17.6,"EF 18, 2008 Energy Star",None,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,National Average,None,None,8,SSW,"2ft, All Windows",150%,94%,,,Southwest,1.0 kWDC,None,Hour16,67,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Electric Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Single, Clear, Metal"
+project_testing-0011.osw,,,,4A,,Hour11,None,2,,,"Standard Efficiency, No usage",,,Northeast,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",13,4+,8+,"Brick, Light",Steel Frame,Yes,Other Fuel,69F,Yes,12F,Night +4h,None,"R-2, Timer","50% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Electric Baseboard, 100% Efficiency",Electricity,40% Conditioned,None,Yes,402.7 cfm/ton,0.848 Charge Frac,650.6 cfm/ton,0.570 Charge Frac,,,,30 ACH50,None,None,None,None,"Finished, R-30","4ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,None,None,None,,"HRV, 60%",EF 17.6,"EF 18, 2008 Energy Star",None,None,Gas Lighting,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",27,0,WSW,"2ft, Left Windows",25%,79%,,,Southeast,5.0 kWDC,None,Hour16,127,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Single, Clear, Metal"
+project_testing-0012.osw,,,,2A,,Hour22,"20 kWh, 80% Round Trip Efficiency",2,,,Premium Efficiency,,,South,,Electric,100% Usage,None,None,100% Usage,None,80% Usage,76F w/ Building America season,No,0F,None,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,80% Usage,30 ft^2,Wood,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,3000-3999,2500-3999,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",6,4+,<8,"Aluminum, Light",Concrete,Yes,Fuel Oil,64F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,20% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,6 ACH50,None,None,None,None,"Finished, R-30","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.95",,100% Incandescent,100% Usage,100% Usage,,Exhaust,EF 15.9,"EF 18, 2008 Energy Star",National Average,Gas Grill,National Average,Other Fuel,None,None,None,None,None,7,0,WNW,"2ft, Left Windows",75%,100%,,,Southwest,11.0 kWDC,None,Hour19,67,EF 6.7,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Fuel Oil Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Single, Clear, Non-metal"
+project_testing-0013.osw,,,,2A,,Hour19,None,5,,,"Standard Efficiency, 0.5F Offset",,,South,,Propane,80% Usage,None,None,100% Usage,Propane,100% Usage,77F,Yes,9F,Day Setup +5h,Single Exterior Front,"TX, Harris County",,None,None,100% Usage,30 ft^2,Wood,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Brick,No,Natural Gas,66F,No,0F,None,No Exterior Use,"R-2, Demand","200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,18.5 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,95% Usage,,Exhaust,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",National Average,None,None,None,Has Pool,Other Fuel,National Average,None,"Cooling Season, 7 days/wk",27,0,NNE,"2ft, Back Windows",100%,108%,,,None,None,None,Hour11,67,EF 17.6,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Natural Gas Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_testing-0014.osw,,,,5A,,Hour18,None,4,,,Premium Efficiency,,,Midwest,,Electric,80% Usage,None,None,80% Usage,Gas,80% Usage,77F,Yes,5F,Day Setup -3h,Double Exterior,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",9,4+,8+,"Shingle, Asbestos, Medium",Brick,No,Propane,78F,No,0F,None,No Exterior Use,"R-5, Timer","100% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,Yes,601.0 cfm/ton,1.127 Charge Frac,204.4 cfm/ton,0.988 Charge Frac,,,,4 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,100% Usage,,None,None,None,None,None,Gas Lighting,None,Has Pool,Electricity,0.75 HP Pump,National Average,None,7,0,Northeast,"2ft, Back Windows",400%,105%,,,None,None,None,Hour11,80,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Electric Tankless,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0015.osw,,,,5A,,Hour20,"20 kWh, Outside",5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,120% Usage,EnergyStar,Yes,80% Usage,Gas,80% Usage,62F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,20 ft^2,Wood,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,20,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",3,3,<8,"Stucco, Medium/Dark",Brick,Yes,Other Fuel,78F,No,0F,None,No Exterior Use,R-2,"200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Other Fuel Fuel Wall/Floor Furnace,None,None,None,None,Yes,601.0 cfm/ton,1.405 Charge Frac,353.1 cfm/ton,0.709 Charge Frac,,,,4 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 10.5,None,National Average,Gas Grill,None,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",4,3,East,"2ft, Left Windows",75%,89%,,,Northeast,11.0 kWDC,None,Hour21,80,EF 15.9,105% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0016.osw,,,,5A,,Hour6,10 kWh,3,,,Standard Efficiency,,,Midwest,,Propane,80% Usage,None,None,120% Usage,Gas,120% Usage,68F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Vented Attic,None,Right,None,None,15,Single-Family Attached,Single-Family Attached,Single-Family Attached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage",3,3,<8,"Shingle, Composition, Medium",Concrete,Yes,Natural Gas,73F,No,0F,None,No Exterior Use,"R-2, Demand","200% Usage, Low Flow",,Shared Cooling,20% Conditioned,Central AC,No,Cooling Only,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,None,None,None,Fan Coil Cooling Only,Yes,303.5 cfm/ton,1.405 Charge Frac,452.3 cfm/ton,1.266 Charge Frac,,,,7.5 ACH50,R-30,Ceiling R-38,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, R-7","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,Gas Lighting,Other Fuel,None,None,None,National Average,None,2,0,North,"2ft, Front Windows",75%,123%,,,Southeast,9.0 kWDC,Yes,Hour18,80,EF 17.6,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Single, Clear, Metal"
+project_testing-0017.osw,,,,3B,,Hour14,"20 kWh, 80% Round Trip Efficiency",2,,,Standard Efficiency,,,West,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Resistance,120% Usage,76F,Yes,9F,Night Setback +1h,Not Applicable,"CA, Los Angeles County",,None,318 Rated kWh,100% Usage,30 ft^2,Steel,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Vented Attic,None,Right,None,None,144,Single-Family Attached,Single-Family Attached,Single-Family Attached,0-499,0-1499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,Yes,Propane,72F,Yes,3F,Day -1h,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,Shared Cooling,20% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,50% Conditioned,"Fan Coil Heating and Cooling, Fuel",Yes,402.7 cfm/ton,0.848 Charge Frac,452.3 cfm/ton,1.266 Charge Frac,,,,5 ACH50,R-38,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.95",,100% Incandescent,100% Usage,95% Usage,,None,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,None,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",2,0,ESE,"2ft, All Windows",75%,121%,,,Southeast,11.0 kWDC,No,Hour17,10,EF 6.7,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0018.osw,,,,3B,,Hour0,None,4,,,Standard Efficiency,,,West,,Gas,100% Usage,None,None,120% Usage,Gas,80% Usage,80F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,100% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",35,4+,8+,"Shingle, Composition, Medium",Steel Frame,No,Natural Gas,66F,No,0F,None,None,"R-2, Demand",50% Usage,,"Room AC, EER 9.8",100% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Natural Gas Fuel Furnace,None,None,None,None,Yes,353.1 cfm/ton,0.988 Charge Frac,650.6 cfm/ton,0.988 Charge Frac,,,,20 ACH50,None,None,None,None,"Finished, Uninsulated","R10 Whole Slab, Horizontal","Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,None,None,None,,Exhaust,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",None,National Average,Gas Lighting,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",12,0,Southeast,"2ft, Left Windows",25%,96%,,,None,None,None,Hour20,10,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Electric Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0019.osw,,,,5A,,Hour19,10 kWh,3,,,Premium Efficiency,,,Midwest,,None,80% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,120% Usage,76F w/ Building America season,Yes,2F,Day and Night Setup +2h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,40 ft^2,Wood,None,None,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,12,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Unheated Basement,None,"Single-Family Attached, Unheated Basement, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,No,Electricity,78F,Yes,3F,Night -4h,No Exterior Use,"R-5, Timer",100% Usage,,"Room AC, EER 10.7",80% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Electricity",Yes,254.0 cfm/ton,1.266 Charge Frac,204.4 cfm/ton,0.848 Charge Frac,,,,5 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-7",None,"Wood Stud, R-11","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,100% Usage,,Supply,EF 10.5,"EF 12, Average Installed",National Average,Gas Grill,Gas Lighting,Electricity,None,None,None,National Average,"Cooling Season, 7 days/wk",4,0,West,"2ft, Right Windows",200%,95%,,,None,None,None,Hour16,80,EF 10.2,105% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,None,IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Propane Premium,,,Unheated Basement,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0020.osw,,,,2A,,Hour5,"20 kWh, 80% Round Trip Efficiency",2,,,Standard Efficiency,,,South,,Propane,80% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,120% Usage,70F,No,0F,None,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,500-749,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,"Brick, Medium/Dark",Steel Frame,Yes,None,62F,No,0F,None,No Exterior Use,"R-2, Timer",50% Usage,,"AC, SEER 10",20% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,Yes,501.9 cfm/ton,1.266 Charge Frac,551.5 cfm/ton,0.848 Charge Frac,,,,20 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Under, Horizontal","Wood Stud, R-11","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,None,EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,Gas Lighting,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",7,7,SSE,None,100%,123%,,,West,13.0 kWDC,None,Hour14,67,EF 17.6,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Premium,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0021.osw,,,,4A,,Hour1,"20 kWh, Outside",1,,,None,,,Northeast,,Gas,120% Usage,None,None,100% Usage,None,100% Usage,72F,Yes,9F,Day and Night Setup -2h,Not Applicable,"NY, New York County",,"65 pints/day, 60% RH",None,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,3000-3999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Aluminum, Light",Brick,No,Natural Gas,69F,Yes,3F,Day and Night +5h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Natural Gas Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,303.5 cfm/ton,0.570 Charge Frac,551.5 cfm/ton,0.709 Charge Frac,,,,18.5 ACH50,None,Ceiling R-38,None,None,"Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.7, Winter = 0.7",,100% CFL,95% Usage,100% Usage,,None,EF 10.2,"EF 18, 2008 Energy Star",None,National Average,Gas Lighting,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",4,2,ESE,"2ft, Back Windows",50%,113%,,,None,None,None,Hour12,127,EF 19.9,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_testing-0022.osw,,,,4A,,Hour7,"20 kWh, 80% Round Trip Efficiency",4,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,100% Usage,EnergyStar,Yes,80% Usage,None,100% Usage,78F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,40 ft^2,Steel,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1500-1999,1500-2499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",35,4+,8+,"Shingle, Composition, Medium",Brick,No,Fuel Oil,67F,Yes,12F,Day and Night -5h,No Exterior Use,R-2,"200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,18.5 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,"ERV, 72%",EF 15.9,"EF 12, National Average",National Average,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,None,0,Northeast,"2ft, Back Windows",150%,104%,,,None,None,None,Hour11,127,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Electric Premium,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
+project_testing-0023.osw,,,,5A,,Hour23,"20 kWh, 80% Round Trip Efficiency",5,,,Standard Efficiency,,,Midwest,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Induction,100% Usage,70F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Heated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,Right,None,None,60,Single-Family Attached,Single-Family Attached,Single-Family Attached,500-749,0-1499,Heated Basement,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Natural Gas,65F,Yes,6F,Day -4h,No Exterior Use,"R-2, Demand",200% Usage,,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,30% Conditioned,None,No,None,None,None,None,,,,1 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, Uninsulated",None,"Wood Stud, R-11","Summer = 0.5, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,EF 6.7,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,12,0,Southeast,"2ft, All Windows",200%,134%,,,West,5.0 kWDC,None,Hour18,80,EF 10.5,105% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Propane Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0024.osw,,,,2A,,Hour17,None,3,,,"Premium Efficiency, 0.5F Offset",,,South,,Gas,120% Usage,None,None,100% Usage,Electric Induction,100% Usage,75F,Yes,2F,Day and Night Setup -1h,Not Applicable,"TX, Harris County",,None,None,120% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, R-6",Unheated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,500-749,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",2,2,<8,"Aluminum, Light",Wood Frame,Yes,Propane,69F,Yes,3F,Day +1h,No Exterior Use,"R-2, Demand",200% Usage,,"AC, SEER 8",<10% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Propane Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,11.25 ACH50,None,Ceiling R-13,"Wall R-15, Exterior","R-15, Exterior","Finished, R-30",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,National Average,National Average,Other Fuel,Has Pool,Electricity,0.75 HP Pump,National Average,None,12,0,West,"2ft, Back Windows",50%,89%,,,East,1.0 kWDC,None,Hour17,67,EF 10.5,100% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Propane Tankless,,,Unheated Basement,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0025.osw,,,,2A,,Hour3,"20 kWh, 80% Round Trip Efficiency",1,,,Premium Efficiency,,,South,,Electric,80% Usage,EnergyStar,Yes,100% Usage,Propane,80% Usage,76F w/ Building America season,No,0F,None,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,30 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,500-749,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Light",Concrete,No,Natural Gas,78F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Ceiling R-30,None,None,"Finished, Uninsulated",None,"CMU, 6-in Hollow, R-19","Summer = 0.6, Winter = 0.7",,100% LED,100% Usage,95% Usage,,"ERV, 72%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Electricity,Has Pool,Other Fuel,1.0 HP Pump,None,None,None,10+,North,None,25%,99%,,,None,None,None,Hour19,67,EF 21.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Premium,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0026.osw,,,,3B,,Hour6,10 kWh,4,,,"Premium Efficiency, 0.5F Offset",,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,66F,Yes,9F,Night Setup +5h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Top,19,None,10 to 19 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",8,4+,8+,"Stucco, Light",Steel Frame,No,Other Fuel,66F,No,0F,None,No Exterior Use,"R-2, Timer",50% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,4.5 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,None,"EF 18, 2008 Energy Star",Gas Fireplace,None,None,Electricity,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",4,0,ENE,"2ft, Right Windows",25%,137%,,,None,None,None,Hour12,10,EF 10.5,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Double, Clear, Non-metal, Air"
+project_testing-0027.osw,,,,4A,,Hour19,10 kWh,2,,,Standard Efficiency,,,Northeast,,Propane,80% Usage,EnergyStar,Yes,100% Usage,Propane,100% Usage,67F,No,0F,None,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Steel,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Vinyl, Light",Concrete,Yes,Fuel Oil,55F,Yes,3F,Day -5h,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,"Room AC, EER 12.0",100% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,25 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.95",,100% LED,100% Usage,100% Usage,,Supply,EF 10.5,"EF 12, National Average",Gas Fireplace,National Average,None,None,Has Pool,Other Fuel,1.0 HP Pump,None,None,2,0,West,"2ft, Left Windows",50%,97%,,,South,11.0 kWDC,None,Hour18,127,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Propane Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0028.osw,,,,2A,,Hour6,10 kWh,1,,,Premium Efficiency,,,South,,Propane,80% Usage,None,None,100% Usage,None,100% Usage,65F,Yes,5F,Night Setback -4h,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH",318 Rated kWh,100% Usage,20 ft^2,Steel,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",15,4+,8+,"Shingle, Asbestos, Medium",Wood Frame,Yes,Fuel Oil,60F,Yes,12F,Night +2h,None,"R-2, Timer",200% Usage,,"Room AC, EER 10.7",60% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.5 ACH50,None,Ceiling R-30,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.95",,None,None,None,,"HRV, 60%",EF 19.9,None,Gas Fireplace,National Average,National Average,Electricity,Has Pool,Natural Gas,0.75 HP Pump,National Average,"Cooling Season, 7 days/wk",12,0,WSW,"2ft, Front Windows",400%,108%,,,Southeast,9.0 kWDC,None,Hour17,67,EF 21.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0029.osw,,,,2A,,Hour8,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, No usage",,,South,,None,80% Usage,EnergyStar,Yes,80% Usage,Electric Induction,80% Usage,68F,Yes,5F,Day and Night Setup -4h,Double Exterior,"TX, Harris County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,None,Brick,No,Other Fuel,70F,No,0F,None,None,"R-2, Demand","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,700.2 cfm/ton,0.709 Charge Frac,501.9 cfm/ton,1.266 Charge Frac,,,,8 ACH50,None,None,None,None,"Finished, R-19","R10 Whole Slab, Horizontal","Brick, 12-in, 3-wythe, R-15","Summer = 0.5, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,National Average,Natural Gas,Has Pool,Natural Gas,National Average,None,"Cooling Season, 7 days/wk",12,2,Southeast,None,100%,79%,,,None,None,None,Hour9,67,EF 10.5,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F18 B18 L18 R18,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0030.osw,,,,3B,,Hour13,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,West,,Electric,120% Usage,None,None,80% Usage,Electric Resistance,80% Usage,60F,Yes,2F,Night Setup -4h,None,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,1500-1999,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",14,4+,8+,"Brick, Medium/Dark",Concrete,No,Propane,80F,Yes,3F,Day and Night +5h,No Exterior Use,R-2,"200% Usage, Low Flow",,"Room AC, EER 12.0",<10% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Propane Fuel Furnace,None,None,None,None,Yes,402.7 cfm/ton,0.570 Charge Frac,700.2 cfm/ton,0.848 Charge Frac,,,,10 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-7",None,"CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 19.9,"EF 18, 2008 Energy Star",Gas Fireplace,None,National Average,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",7,9,SSE,None,50%,121%,,,None,None,None,Hour17,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Renter,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0031.osw,,,,3B,,Hour17,"20 kWh, 80% Round Trip Efficiency",3,,,None,,,West,,Gas,80% Usage,EnergyStar,Yes,80% Usage,Propane,100% Usage,80F,No,0F,None,None,"CA, Los Angeles County",,None,None,80% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Steel Frame,No,Other Fuel,64F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,"Room AC, EER 9.8",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,None,EF 19.9,"EF 12, National Average",National Average,National Average,Gas Lighting,Other Fuel,None,None,None,None,None,None,0,SSE,"2ft, Front Windows",200%,86%,,,None,None,None,Hour19,10,EF 10.5,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0032.osw,,,,4A,,Hour5,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,Northeast,,Electric,80% Usage,None,None,120% Usage,Gas,80% Usage,69F,Yes,5F,Day Setup and Night Setback,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,40 ft^2,Steel,"30% Leakage to Outside, R-4",Unheated Basement,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Bottom,8,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Shingle, Asbestos, Medium",Steel Frame,No,Fuel Oil,75F,No,0F,None,No Exterior Use,R-2,50% Usage,,Shared Cooling,60% Conditioned,Central AC,Yes,Cooling Only,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,50% Conditioned,Fan Coil Cooling Only,Yes,452.3 cfm/ton,1.266 Charge Frac,700.2 cfm/ton,0.709 Charge Frac,,,,7 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-49",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,None,EF 10.2,"EF 12, National Average",Gas Fireplace,Gas Grill,Gas Lighting,Natural Gas,Has Pool,Electricity,1.0 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",4,7,WNW,None,150%,140%,,,None,None,None,Hour12,127,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Natural Gas Standard,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0033.osw,,,,4A,,Hour1,"20 kWh, Outside",3,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,120% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,80% Usage,65F,No,0F,None,Not Applicable,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,3000-3999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Wood Frame,No,Fuel Oil,76F,Yes,12F,Day and Night +1h,No Exterior Use,"R-2, Timer","50% Usage, Low Flow",,"AC, SEER 15",100% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,Yes,650.6 cfm/ton,0.848 Charge Frac,154.8 cfm/ton,0.570 Charge Frac,,,,7 ACH50,None,Uninsulated,None,None,"Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 17.6,"EF 12, Average Installed",None,Gas Grill,None,Natural Gas,None,None,None,High Efficiency,None,7,0,ESE,"2ft, Back Windows",400%,96%,,,None,None,None,Hour10,127,EF 6.7,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Single, Clear, Non-metal"
+project_testing-0034.osw,,,,5A,,Hour18,"20 kWh, 80% Round Trip Efficiency",5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Gas,120% Usage,None,None,120% Usage,None,80% Usage,66F,Yes,9F,Night Setup -3h,None,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",7,4+,<8,"Wood, Medium/Dark",Steel Frame,Yes,None,69F,Yes,3F,Night +5h,No Exterior Use,R-2,"100% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,650.6 cfm/ton,0.709 Charge Frac,254.0 cfm/ton,0.709 Charge Frac,,,,40 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,None,EF 21.9,"EF 12, National Average",Gas Fireplace,Gas Grill,National Average,Other Fuel,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",None,3,SSW,None,200%,144%,,,Southwest,3.0 kWDC,None,Hour7,80,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F9 B9 L9 R9,"Single, Clear, Non-metal"
+project_testing-0035.osw,,,,5A,,Hour3,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,75F,Yes,9F,Night Setup +3h,Double-Loaded Interior,"IL, Cook County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,30 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",5,4+,<8,"Stucco, Medium/Dark",Wood Frame,No,None,63F,No,0F,None,No Exterior Use,Uninsulated,"100% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,303.5 cfm/ton,0.988 Charge Frac,650.6 cfm/ton,0.988 Charge Frac,,,,5 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,None,None,"EF 12, Average Installed",None,Gas Grill,None,Electricity,None,None,None,National Average,None,4,8,East,"2ft, All Windows",25%,95%,,,None,None,None,Hour17,80,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Propane Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_testing-0036.osw,,,,3B,,Hour4,"20 kWh, 80% Round Trip Efficiency",1,,,"Premium Efficiency, 0.5F Offset",,,West,,Gas,120% Usage,None,None,80% Usage,Propane,100% Usage,76F,Yes,2F,Day Setup and Night Setback +2h,None,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Fiberglass,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Left,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Concrete,Yes,None,72F,Yes,6F,Day and Night +3h,No Exterior Use,"R-2, Timer",200% Usage,,None,None,None,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,4 ACH50,None,Ceiling R-19,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,None,None,None,None,None,Gas Lighting,Electricity,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",12,1,WNW,"2ft, Right Windows",400%,95%,,,North,3.0 kWDC,None,Hour7,10,None,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Owner,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Electric Premium,,,Unheated Basement,Jack Northrop Fld H,33.92,-118.33,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0037.osw,,,,2A,,Hour4,None,1,,,"Standard Efficiency, No usage",,,South,,Gas,100% Usage,None,None,120% Usage,Propane,100% Usage,69F,Yes,5F,Night Setback +4h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,120% Usage,30 ft^2,Wood,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Ambient,None,"Single-Family Detached, Ambient, Unvented Attic, No Garage",2,2,<8,"Stucco, Medium/Dark",Concrete,Yes,Other Fuel,71F,No,0F,None,No Exterior Use,R-2,"200% Usage, Low Flow",,"Room AC, EER 9.8",100% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Other Fuel Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,30 ACH50,Uninsulated,Ceiling R-19,None,None,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, R-11","Summer = 0.5, Winter = 0.95",,100% LED,100% Usage,100% Usage,,Supply,EF 10.2,"EF 18, 2008 Energy Star",National Average,Gas Grill,None,Natural Gas,None,None,None,National Average,None,12,0,ESE,"2ft, Front Windows",400%,119%,,,Northwest,13.0 kWDC,Yes,Hour17,67,EF 10.5,100% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Natural Gas Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F18 B18 L18 R18,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0038.osw,,,,5A,,Hour22,10 kWh,1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,100% Usage,None,None,100% Usage,Propane,80% Usage,80F,No,0F,None,None,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",15,4+,8+,"Stucco, Medium/Dark",Wood Frame,No,Fuel Oil,70F,No,0F,None,None,Uninsulated,"50% Usage, Low Flow",,"AC, SEER 13",100% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,700.2 cfm/ton,0.848 Charge Frac,154.8 cfm/ton,0.570 Charge Frac,,,,0.75 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,None,None,None,,Supply,EF 10.5,"EF 12, National Average",Gas Fireplace,Gas Grill,None,Electricity,None,None,None,High Efficiency,None,4,5,SSW,"2ft, Front Windows",25%,95%,,,None,None,None,Hour15,80,EF 19.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Fuel Oil Premium,,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Metal, Air"
+project_testing-0039.osw,,,,3B,,Hour14,"20 kWh, Outside",2,,,"Standard Efficiency, 0.5F Offset",,,West,,None,80% Usage,Standard,Yes,100% Usage,Propane,120% Usage,67F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,120% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",9,4+,8+,"Vinyl, Light",Concrete,No,None,71F w/ Building America season,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,Shared Cooling,40% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,No,None,None,None,None,,,,1.5 ACH50,None,None,None,None,"Finished, R-7","2ft R10 Under, Horizontal","CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,95% Usage,,"HRV, 60%",EF 10.2,None,None,National Average,Gas Lighting,Electricity,Has Pool,None,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",2,0,NNW,"2ft, Front Windows",75%,84%,,,None,None,None,Hour6,10,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0040.osw,,,,2A,,Hour3,"20 kWh, Outside",3,,,"Standard Efficiency, 0.5F Offset",,,South,,Electric,120% Usage,Standard,Yes,120% Usage,Electric Resistance,100% Usage,62F,Yes,2F,Day Setup and Night Setback -1h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Attic,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,2500-2999,2500-3999,Ambient,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",2,2,<8,"Stucco, Medium/Dark",Steel Frame,No,Other Fuel,80F,Yes,12F,Night -1h,No Exterior Use,Uninsulated,100% Usage,,None,None,None,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Other Fuel Fuel Furnace,None,None,None,None,No,None,None,None,None,,,,25 ACH50,R-49,Ceiling R-19,None,None,"Unfinished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,60% CFL,100% Usage,95% Usage,,Supply,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,None,None,Natural Gas,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",27,9,ENE,"2ft, Right Windows",75%,134%,,,None,None,Yes,Hour12,67,EF 10.2,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F10 B30 L10 R10,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0041.osw,,,,3B,,Hour22,"20 kWh, Outside",5,,,"Standard Efficiency, No usage",,,West,,Electric,120% Usage,None,None,120% Usage,None,120% Usage,64F,Yes,9F,Night Setup -5h,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,100% Usage,30 ft^2,Wood,"30% Leakage to Outside, R-4",Crawlspace,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Finished Attic or Cathedral Ceilings,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Vented Crawlspace,None,"Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage",3,3,<8,"Shingle, Asbestos, Medium",Concrete,Yes,Propane,60F,No,0F,None,No Exterior Use,"R-2, Timer",200% Usage,,"AC, SEER 8",<10% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Propane Fuel Furnace,"Electric Portable Heater, 100% Efficiency",Electricity,40% Conditioned,None,No,None,None,None,None,,,,3.75 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, R-49",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,Supply,EF 6.7,"EF 12, National Average",None,National Average,National Average,Electricity,Has Pool,None,0.75 HP Pump,National Average,None,2,1,NNE,"2ft, Front Windows",400%,104%,,,West,13.0 kWDC,None,Hour17,10,EF 17.6,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Owner,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Electric Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0042.osw,,,,4A,,Hour0,"20 kWh, Outside",2,,,"Standard Efficiency, No usage",,,Northeast,,Propane,120% Usage,None,None,100% Usage,Propane,100% Usage,74F,No,0F,None,Not Applicable,"NY, New York County",,None,None,100% Usage,20 ft^2,Steel,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,750-999,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,None,Brick,No,Fuel Oil,67F,Yes,12F,Day -5h,No Exterior Use,"R-5, Timer",200% Usage,,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Fuel Oil Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,650.6 cfm/ton,1.266 Charge Frac,700.2 cfm/ton,1.266 Charge Frac,,,,3 ACH50,None,Ceiling R-30,None,None,"Finished, R-49",None,"Brick, 12-in, 3-wythe, R-7","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,"HRV, 60%",None,"EF 12, Average Installed",Gas Fireplace,National Average,None,Electricity,None,None,None,None,None,2,2,South,"2ft, Left Windows",150%,86%,,,None,None,None,Hour14,127,EF 10.2,95% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0043.osw,,,,4A,,Hour5,10 kWh,2,,,None,,,Northeast,,None,80% Usage,Standard,Yes,120% Usage,Propane,120% Usage,69F,Yes,9F,Night Setup -1h,Single Exterior Front,"NY, New York County",,None,290 Rated kWh,80% Usage,20 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",21,4+,8+,"Stucco, Medium/Dark",Brick,Yes,Electricity,63F,Yes,6F,Day +1h,No Exterior Use,Uninsulated,100% Usage,,Non-Ducted Heat Pump,80% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 14.5, 8.2 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Propane,30% Conditioned,None,Yes,700.2 cfm/ton,0.848 Charge Frac,254.0 cfm/ton,1.127 Charge Frac,,,,3 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,Exhaust,EF 10.2,None,National Average,Gas Grill,National Average,None,Has Pool,Other Fuel,National Average,National Average,None,None,4,South,None,150%,91%,,,South,5.0 kWDC,None,Hour16,127,EF 17.6,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Electric Tankless,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_testing-0044.osw,,,,5A,,Hour5,10 kWh,1,,,None,,,Midwest,,None,80% Usage,Standard,Yes,120% Usage,Propane,100% Usage,68F,Yes,2F,Day and Night Setup +4h,Double Exterior,"IL, Cook County",,None,None,120% Usage,30 ft^2,Wood,None,None,2 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",7,4+,<8,"Shingle, Asbestos, Medium",Brick,No,Natural Gas,71F,No,0F,None,None,Uninsulated,"100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,501.9 cfm/ton,1.405 Charge Frac,501.9 cfm/ton,0.570 Charge Frac,,,,4.5 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.5, Winter = 0.95",,None,None,None,,"ERV, 72%",EF 6.7,"EF 20, 2008 Energy Star Most Efficient",National Average,None,National Average,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",27,2,NNW,"2ft, Left Windows",25%,121%,,,None,None,None,Hour13,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Propane Standard,,,Living Space,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Single, Clear, Non-metal"
+project_testing-0045.osw,,,,2A,,Hour16,None,5,,,"Standard Efficiency, No usage",,,South,,Gas,120% Usage,None,None,120% Usage,None,100% Usage,73F,No,0F,None,Single Exterior Front,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,120% Usage,20 ft^2,Wood,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Top,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage",3,3,<8,"Aluminum, Light",Wood Frame,No,Fuel Oil,68F,No,0F,None,No Exterior Use,R-2,100% Usage,,"Room AC, EER 8.5",20% Conditioned,Room AC,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,3 ACH50,None,Ceiling R-13,"Wall R-15, Exterior","R-15, Exterior","Finished, Uninsulated",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,"HRV, 60%",EF 10.5,"EF 20, 2008 Energy Star Most Efficient",None,None,Gas Lighting,Natural Gas,None,None,None,High Efficiency,None,27,6,West,"2ft, Front Windows",150%,166%,,,None,None,None,Hour8,67,None,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Natural Gas Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0046.osw,,,,4A,,Hour1,"20 kWh, 80% Round Trip Efficiency",5,,,None,,,Northeast,,Propane,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,80F,No,0F,None,Single Exterior Front,"NY, New York County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,20 ft^2,Wood,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Attached,Multi-Family with 5+ Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",12,4+,8+,"Vinyl, Light",Wood Frame,Yes,Natural Gas,72F,Yes,12F,Night -5h,No Exterior Use,"R-2, Demand","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,353.1 cfm/ton,1.127 Charge Frac,303.5 cfm/ton,1.127 Charge Frac,,,,6 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,95% Usage,,Supply,EF 15.9,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,National Average,Gas Lighting,Electricity,Has Pool,Natural Gas,1.0 HP Pump,None,None,12,4,North,"2ft, All Windows",75%,140%,,,Northwest,11.0 kWDC,None,Hour19,127,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0047.osw,,,,4A,,Hour10,None,2,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,None,80% Usage,None,None,100% Usage,Electric Resistance,120% Usage,64F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,"Shingle, Composition, Medium",Brick,No,Other Fuel,80F,Yes,12F,Day -3h,No Exterior Use,R-2,"50% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Other Fuel Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,353.1 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.405 Charge Frac,,,,5.25 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.5, Winter = 0.95",,100% CFL,100% Usage,95% Usage,,Exhaust,None,"EF 12, Average Installed",National Average,National Average,Gas Lighting,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",2,8,SSE,"2ft, Left Windows",25%,78%,,,None,None,None,Hour19,127,EF 15.9,105% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0048.osw,,,,2A,,Hour4,10 kWh,5,,,"Standard Efficiency, 0.5F Offset",,,South,,Propane,80% Usage,Standard,Yes,120% Usage,Electric Resistance,120% Usage,74F,Yes,5F,Day Setup and Night Setback -4h,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,100% Usage,30 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Attached,Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",15,4+,8+,"Aluminum, Light",Concrete,Yes,Propane,71F w/ Building America season,Yes,12F,Day and Night +4h,No Exterior Use,"R-2, Demand",200% Usage,,None,None,None,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,650.6 cfm/ton,0.988 Charge Frac,303.5 cfm/ton,1.405 Charge Frac,,,,7 ACH50,None,Ceiling R-19,"Wall R-5, Exterior","R-5, Exterior","Finished, R-30",None,"CMU, 6-in Hollow, R-19","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,95% Usage,,Supply,EF 17.6,"EF 18, 2008 Energy Star",National Average,National Average,None,Other Fuel,None,None,None,None,None,2,7,WSW,"2ft, Back Windows",400%,119%,,,North,1.0 kWDC,None,Hour21,67,EF 15.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Electric Tankless,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0049.osw,,,,3B,,Hour21,"20 kWh, Outside",1,,,"Standard Efficiency, No usage",,,West,,Gas,120% Usage,None,None,80% Usage,None,120% Usage,60F,Yes,5F,Day and Night Setup -3h,Not Applicable,"CA, Los Angeles County",,None,None,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,1000-1499,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Asbestos, Medium",Wood Frame,Yes,Propane,62F,No,0F,None,No Exterior Use,R-2,200% Usage,,"Room AC, EER 10.7",80% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Propane Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,No,None,None,None,None,,,,8 ACH50,None,Ceiling R-30,None,None,"Finished, R-19",None,"Wood Stud, Uninsulated","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,None,EF 10.5,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,National Average,Natural Gas,None,None,None,Typical Efficiency,None,27,0,Southwest,"2ft, All Windows",200%,104%,,,South,11.0 kWDC,None,Hour18,10,EF 6.7,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Electric Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L0 R0,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0050.osw,,,,3B,,Hour4,"20 kWh, Outside",2,,,"Standard Efficiency, 0.5F Offset",,,West,,Propane,120% Usage,None,None,80% Usage,Electric Induction,80% Usage,66F,Yes,5F,Day Setup -2h,Double Exterior,"CA, Los Angeles County",,None,318 Rated kWh,80% Usage,30 ft^2,Steel,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",3,3,<8,"Vinyl, Light",Brick,Yes,Propane,71F w/ Building America season,Yes,6F,Day +4h,No Exterior Use,Uninsulated,200% Usage,,"Room AC, EER 9.8",60% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.7, Winter = 0.7",,20% LED,95% Usage,95% Usage,,Supply,EF 21.9,"EF 18, 2008 Energy Star",None,None,None,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,High Efficiency,None,4,0,SSW,"2ft, All Windows",75%,100%,,,North,7.0 kWDC,None,Hour18,10,EF 17.6,95% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,Living Space,Jack Northrop Fld H,33.92,-118.33,None,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0051.osw,,,,4A,,Hour20,None,4,,,None,,,Northeast,,Gas,120% Usage,None,None,100% Usage,Electric Resistance,100% Usage,72F,No,0F,None,Double Exterior,"NY, New York County",,None,290 Rated kWh,120% Usage,20 ft^2,Fiberglass,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",11,4+,8+,"Brick, Light",Wood Frame,No,Electricity,75F,Yes,3F,Night -2h,No Exterior Use,Uninsulated,"50% Usage, Low Flow",,"Room AC, EER 12.0",20% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,"Boiler Baseboards Heating Only, Electricity",No,None,None,None,None,,,,11.25 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,100% Usage,,Exhaust,EF 6.7,"EF 20, 2008 Energy Star Most Efficient",National Average,Gas Grill,National Average,Other Fuel,Has Pool,None,National Average,National Average,"Cooling Season, 7 days/wk",7,0,ESE,"2ft, Left Windows",25%,102%,,,None,None,None,Hour19,127,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Double, Clear, Non-metal, Air"
+project_testing-0052.osw,,,,4A,,Hour7,10 kWh,3,,,Premium Efficiency,,,Northeast,,None,120% Usage,None,None,100% Usage,Gas,120% Usage,74F,Yes,5F,Night Setup -2h,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,40 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Attached,Multi-Family with 5+ Units,2000-2499,1500-2499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",14,4+,8+,"Wood, Medium/Dark",Concrete,Yes,Propane,73F,No,0F,None,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,"Room AC, EER 10.7",100% Conditioned,Room AC,No,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-7",None,"CMU, 6-in Hollow, R-7","Summer = 0.5, Winter = 0.95",,60% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 6.7,"EF 18, 2008 Energy Star",National Average,Gas Grill,None,Other Fuel,None,None,None,High Efficiency,None,2,0,Northeast,None,50%,106%,,,West,7.0 kWDC,None,Hour16,127,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,FIXME Fuel Oil Indirect,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L15 R15,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0053.osw,,,,3B,,Hour0,10 kWh,3,,,"Standard Efficiency, 0.5F Offset",,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,None,80% Usage,76F,No,0F,None,Double-Loaded Interior,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Not Applicable,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",4,4+,<8,None,Concrete,No,Other Fuel,70F,Yes,12F,Day -2h,No Exterior Use,Uninsulated,100% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,1.5 ACH50,None,Ceiling R-30,"Wall R-10, Exterior","R-10, Exterior","Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,100% Usage,,Supply,EF 10.5,None,Gas Fireplace,National Average,National Average,Natural Gas,Has Pool,Natural Gas,National Average,High Efficiency,None,None,0,North,"2ft, Front Windows",50%,89%,,,None,None,None,Hour10,10,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Electric Premium,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_testing-0054.osw,,,,2A,,Hour9,"20 kWh, 80% Round Trip Efficiency",1,,,None,,,South,,Gas,120% Usage,None,None,80% Usage,Electric Induction,120% Usage,80F,Yes,9F,Night Setback -5h,Not Applicable,"TX, Harris County",,None,318 Rated kWh,80% Usage,20 ft^2,Wood,"30% Leakage to Outside, R-6",Crawlspace,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,Unvented Attic,None,Right,None,None,50,Single-Family Attached,Single-Family Attached,Single-Family Attached,0-499,0-1499,Unvented Crawlspace,None,"Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage",1,1,<8,None,Brick,No,None,70F,No,0F,None,No Exterior Use,"R-5, Timer",100% Usage,,"AC, SEER 8",80% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,40 ACH50,Uninsulated,Ceiling R-38,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.6, Winter = 0.7",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 10.2,"EF 20, 2008 Energy Star Most Efficient",National Average,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,0.75 HP Pump,Typical Efficiency,"Cooling Season, 7 days/wk",None,0,NNW,"2ft, Right Windows",200%,105%,,,None,None,No,Hour11,67,EF 10.2,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,None,TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0055.osw,,,,2A,,Hour20,None,1,,,Premium Efficiency,,,South,,Gas,100% Usage,Standard,Yes,120% Usage,None,120% Usage,64F,No,0F,None,None,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",None,100% Usage,30 ft^2,Steel,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",20,4+,8+,"Wood, Medium/Dark",Concrete,No,Other Fuel,64F,Yes,12F,Day and Night +2h,No Exterior Use,"R-5, Timer","100% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Other Fuel Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,50% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.988 Charge Frac,402.7 cfm/ton,0.709 Charge Frac,,,,10 ACH50,None,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Finished, R-7",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.7, Winter = 0.7",,100% CFL,95% Usage,100% Usage,,Exhaust,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,Gas Lighting,Other Fuel,Has Pool,Natural Gas,National Average,High Efficiency,"Cooling Season, 7 days/wk",7,6,Northeast,"2ft, All Windows",200%,137%,,,None,None,None,Hour14,67,EF 17.6,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0056.osw,,,,5A,,Hour12,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, No usage",,,Midwest,,Gas,100% Usage,Standard,Yes,80% Usage,Electric Induction,80% Usage,64F,Yes,2F,Day Setup and Night Setback -5h,Double-Loaded Interior,"IL, Cook County",,None,318 Rated kWh,80% Usage,30 ft^2,Steel,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",35,4+,8+,"Stucco, Light",Concrete,No,None,65F,No,0F,None,No Exterior Use,R-2,"100% Usage, Low Flow",,"Room AC, EER 10.7",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,Yes,154.8 cfm/ton,0.709 Charge Frac,353.1 cfm/ton,0.570 Charge Frac,,,,3.75 ACH50,None,Ceiling R-30,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"CMU, 6-in Hollow, R-19","Summer = 0.5, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,"HRV, 60%",EF 10.5,"EF 16, 2001 Fed Standard-reference freezer",None,Gas Grill,None,Natural Gas,Has Pool,Electricity,0.75 HP Pump,None,None,2,2,ENE,"2ft, Right Windows",50%,96%,,,None,None,None,Hour0,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Electric Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F12 B12 L12 R12,"Double, Clear, Metal, Air"
+project_testing-0057.osw,,,,3B,,Hour23,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,West,,Electric,120% Usage,Standard,Yes,80% Usage,Electric Resistance,100% Usage,70F,No,0F,None,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Fiberglass,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Bottom,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Brick, Light",Concrete,Yes,Propane,74F,No,0F,None,No Exterior Use,R-2,50% Usage,,"Room AC, EER 8.5",40% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Propane Shared Heating,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.570 Charge Frac,204.4 cfm/ton,1.127 Charge Frac,,,,4.5 ACH50,None,Ceiling R-30,"Wall R-15, Exterior","R-15, Exterior","Finished, R-13",None,"CMU, 6-in Hollow, R-15","Summer = 0.7, Winter = 0.7",,100% LED,95% Usage,95% Usage,,None,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",National Average,National Average,None,None,None,None,None,Typical Efficiency,None,4,0,WSW,"2ft, Right Windows",100%,101%,,,Northeast,13.0 kWDC,None,Hour18,10,EF 15.9,95% Usage,"Metal, Dark",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Premium,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_testing-0058.osw,,,,4A,,Hour9,"20 kWh, Outside",5,,,Standard Efficiency,,,Northeast,,None,120% Usage,Standard,Yes,120% Usage,Propane,120% Usage,76F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Light",Wood Frame,Yes,None,60F,Yes,6F,Day +3h,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,254.0 cfm/ton,1.127 Charge Frac,204.4 cfm/ton,0.848 Charge Frac,,,,8 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-19","Summer = 0.5, Winter = 0.95",,20% LED,100% Usage,95% Usage,,Supply,EF 15.9,"EF 18, 2008 Energy Star",Gas Fireplace,National Average,Gas Lighting,Other Fuel,Has Pool,None,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",2,0,Southeast,"2ft, Left Windows",200%,166%,,,East,13.0 kWDC,None,Hour8,127,None,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Standard,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0059.osw,,,,5A,,Hour21,"20 kWh, Outside",3,,,None,,,Midwest,,Gas,100% Usage,Standard,Yes,100% Usage,Electric Induction,100% Usage,76F w/ Building America season,Yes,9F,Night Setup,Double Exterior,"IL, Cook County",,None,None,120% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Not Applicable,None,Middle,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage",3,3,<8,"Aluminum, Light",Steel Frame,No,Fuel Oil,72F,No,0F,None,No Exterior Use,"R-5, Timer","50% Usage, Low Flow",,"AC, SEER 15",20% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,204.4 cfm/ton,0.709 Charge Frac,650.6 cfm/ton,0.848 Charge Frac,,,,4.5 ACH50,None,None,None,None,"Finished, R-19","4ft R5 Under, Horizontal","Wood Stud, R-11","Summer = 0.7, Winter = 0.7",,100% CFL,100% Usage,95% Usage,,"ERV, 72%",EF 17.6,None,Gas Fireplace,National Average,Gas Lighting,Natural Gas,None,None,None,Typical Efficiency,None,4,8,East,"2ft, All Windows",25%,100%,,,None,None,None,Hour23,80,EF 10.2,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L0 R0,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0060.osw,,,,2A,,Hour1,None,4,,,"Standard Efficiency, 0.5F Offset",,,South,,Electric,100% Usage,None,None,100% Usage,Gas,100% Usage,64F,Yes,9F,Day and Night Setup +3h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,100% Usage,40 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,1500-1999,1500-2499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Steel Frame,No,Electricity,71F w/ Building America season,Yes,6F,Day,No Exterior Use,Uninsulated,100% Usage,,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,None,None,None,None,Yes,452.3 cfm/ton,0.570 Charge Frac,353.1 cfm/ton,1.405 Charge Frac,,,,5.25 ACH50,None,Ceiling R-13,None,None,"Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.7",,100% LED,100% Usage,100% Usage,,Supply,EF 6.7,"EF 12, Average Installed",None,National Average,None,Electricity,Has Pool,Natural Gas,1.0 HP Pump,None,None,27,0,NNE,"2ft, All Windows",400%,137%,,,None,None,None,Hour17,67,EF 17.6,105% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0061.osw,,,,4A,,Hour19,"20 kWh, Outside",4,,,Standard Efficiency,,,Northeast,,Electric,80% Usage,None,None,120% Usage,Electric Induction,80% Usage,62F,No,0F,None,Not Applicable,"NY, New York County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,3000-3999,2500-3999,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",1,1,<8,"Aluminum, Light",Brick,Yes,Electricity,73F,No,0F,None,No Exterior Use,"R-2, Demand",100% Usage,,Ducted Heat Pump,60% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 13, 7.7 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,Yes,254.0 cfm/ton,1.405 Charge Frac,501.9 cfm/ton,0.570 Charge Frac,,,,2 ACH50,R-60,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.6, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,None,EF 19.9,"EF 12, National Average",None,Gas Grill,Gas Lighting,Other Fuel,None,None,None,High Efficiency,"Cooling Season, 7 days/wk",7,0,South,"2ft, All Windows",400%,91%,,,South,9.0 kWDC,Yes,Hour17,127,EF 6.7,100% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0062.osw,,,,4A,,Hour2,"20 kWh, Outside",5,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,None,100% Usage,None,None,80% Usage,Electric Resistance,120% Usage,68F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,30 ft^2,Steel,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,2000-2499,1500-2499,Unheated Basement,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Steel Frame,No,None,62F,No,0F,None,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"Room AC, EER 8.5",<10% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,Yes,254.0 cfm/ton,1.266 Charge Frac,601.0 cfm/ton,0.988 Charge Frac,,,,10 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-7",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,100% Usage,,Supply,EF 6.7,None,Gas Fireplace,None,National Average,Electricity,None,None,None,Typical Efficiency,None,7,0,East,"2ft, Front Windows",75%,105%,,,None,None,None,Hour9,127,EF 19.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Propane Standard,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
+project_testing-0063.osw,,,,5A,,Hour3,10 kWh,5,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Propane,100% Usage,Standard,Yes,100% Usage,Propane,100% Usage,60F,No,0F,None,Not Applicable,"IL, Cook County",,None,318 Rated kWh,100% Usage,40 ft^2,Steel,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,4000+,4000+,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Steel Frame,No,Propane,74F,Yes,6F,Day and Night -1h,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,None,None,None,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,None,None,None,None,Yes,353.1 cfm/ton,1.127 Charge Frac,501.9 cfm/ton,1.266 Charge Frac,,,,3.75 ACH50,None,Ceiling R-13,None,None,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.6, Winter = 0.7",,100% CFL,100% Usage,100% Usage,,Exhaust,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",None,None,None,Other Fuel,Has Pool,None,National Average,High Efficiency,"Cooling Season, 7 days/wk",12,10+,South,"2ft, Left Windows",150%,101%,,,None,None,None,Hour16,80,EF 10.2,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Natural Gas Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0064.osw,,,,2A,,Hour5,None,5,,,"Standard Efficiency, No usage",,,South,,Gas,100% Usage,Standard,Yes,120% Usage,Electric Resistance,80% Usage,66F,Yes,9F,Night Setback -3h,Double-Loaded Interior,"TX, Harris County",,None,290 Rated kWh,120% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Not Applicable,None,Top,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,4000+,4000+,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Brick, Medium/Dark",Wood Frame,Yes,None,65F,No,0F,None,None,"R-5, Timer",100% Usage,,"Room AC, EER 12.0",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,7.5 ACH50,None,Ceiling R-30,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"Wood Stud, Uninsulated","Summer = 0.5, Winter = 0.7",,None,None,None,,Supply,EF 21.9,None,Gas Fireplace,Gas Grill,National Average,None,Has Pool,None,1.0 HP Pump,Typical Efficiency,None,12,0,SSE,"2ft, Left Windows",25%,102%,,,Northwest,9.0 kWDC,None,Hour17,67,EF 17.6,105% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,Electric Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Single, Clear, Non-metal"
+project_testing-0065.osw,,,,4A,,Hour19,None,1,,,"Standard Efficiency, 0.5F Offset",,,Northeast,,Gas,120% Usage,Standard,Yes,80% Usage,None,120% Usage,73F,Yes,5F,Night Setback +5h,Not Applicable,"NY, New York County",,None,318 Rated kWh,120% Usage,20 ft^2,Fiberglass,"30% Leakage to Outside, R-8",Unheated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,Finished Attic or Cathedral Ceilings,None,Right,None,None,36,Single-Family Attached,Single-Family Attached,Single-Family Attached,2000-2499,1500-2499,Unheated Basement,None,"Single-Family Attached, Unheated Basement, Finished Attic, No Garage",3,3,<8,"Brick, Light",Concrete,No,Electricity,68F,No,0F,None,No Exterior Use,"R-2, Demand","50% Usage, Low Flow",,None,None,None,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,"Fuel Fireplace, 60% AFUE",Propane,<10% Conditioned,None,No,None,None,None,None,,,,50 ACH50,None,Ceiling R-38,"Wall R-15, Exterior","R-15, Exterior","Finished, R-38",None,"CMU, 6-in Hollow, R-19","Summer = 0.7, Winter = 0.95",,100% Incandescent,95% Usage,95% Usage,,"ERV, 72%",EF 21.9,None,None,None,None,Natural Gas,Has Pool,None,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",None,4,WNW,None,75%,97%,,,None,None,None,Hour15,127,EF 6.7,100% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Fuel Oil Premium,,,Unheated Basement,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Metal"
+project_testing-0066.osw,,,,2A,,Hour8,"20 kWh, Outside",1,,,Standard Efficiency,,,South,,Electric,80% Usage,None,None,120% Usage,Electric Resistance,120% Usage,78F,No,0F,None,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 60% RH",318 Rated kWh,100% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Left,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,750-999,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Wood Frame,Yes,None,76F,Yes,6F,Day -1h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"AC, SEER 13",60% Conditioned,Central AC,Yes,None,,None,None,None,None,None,None,None,Yes,204.4 cfm/ton,1.127 Charge Frac,601.0 cfm/ton,1.405 Charge Frac,,,,50 ACH50,None,None,None,None,"Finished, R-19","2ft R5 Perimeter, Vertical","Wood Stud, R-7","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 10.5,"EF 12, National Average",National Average,National Average,None,None,Has Pool,None,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",4,10+,NNE,"2ft, Back Windows",200%,94%,,,East,13.0 kWDC,None,Hour14,67,EF 19.9,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,None,TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Electric Standard,,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Double, Clear, Metal, Air"
+project_testing-0067.osw,,,,4A,,Hour6,None,4,,,"Premium Efficiency, 0.5F Offset",,,Northeast,,None,120% Usage,None,None,100% Usage,Gas,100% Usage,72F,Yes,2F,Night Setback +3h,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",None,120% Usage,30 ft^2,Wood,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,750-999,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",11,4+,8+,"Shingle, Asbestos, Medium",Brick,No,Natural Gas,73F,No,0F,None,No Exterior Use,"R-5, Timer",200% Usage,,"Room AC, EER 9.8",40% Conditioned,Room AC,No,Heating Only,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Electric Baseboard, 100% Efficiency",Electricity,20% Conditioned,"Boiler Baseboards Heating Only, Fuel",Yes,601.0 cfm/ton,0.848 Charge Frac,452.3 cfm/ton,1.127 Charge Frac,,,,3 ACH50,None,Ceiling R-19,"Wall R-15, Exterior","R-15, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-15","Summer = 0.7, Winter = 0.7",,100% Incandescent,100% Usage,95% Usage,,"HRV, 60%",EF 15.9,"EF 12, Average Installed",None,National Average,National Average,None,Has Pool,Other Fuel,1.0 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",7,0,Northwest,"2ft, Front Windows",50%,85%,,,None,None,None,Hour17,127,EF 21.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Fuel Oil Standard,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0068.osw,,,,5A,,Hour1,10 kWh,2,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Electric,120% Usage,EnergyStar,Yes,120% Usage,Electric Induction,120% Usage,70F,No,0F,None,Single Exterior Front,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,20 ft^2,Steel,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",12,4+,8+,"Brick, Medium/Dark",Steel Frame,Yes,Other Fuel,67F,No,0F,None,None,Uninsulated,100% Usage,,None,None,None,No,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Other Fuel Fuel Boiler,"Fuel Fireplace, 60% AFUE",Propane,50% Conditioned,None,No,None,None,None,None,,,,0.75 ACH50,None,Ceiling R-38,"Wall R-5, Exterior","R-5, Exterior","Finished, R-49",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,None,None,None,,None,EF 21.9,"EF 12, Average Installed",None,National Average,Gas Lighting,Natural Gas,None,None,None,None,"Cooling Season, 7 days/wk",27,6,Northeast,"2ft, Front Windows",100%,134%,,,North,9.0 kWDC,None,Hour4,80,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Natural Gas Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Metal"
+project_testing-0069.osw,,,,4A,,Hour20,10 kWh,2,,,Premium Efficiency,,,Northeast,,Propane,120% Usage,EnergyStar,Yes,100% Usage,Electric Resistance,100% Usage,66F,No,0F,None,Double-Loaded Interior,"NY, New York County",,"65 pints/day, 50% RH",None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Top,8,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",5,4+,<8,"Wood, Medium/Dark",Concrete,Yes,None,74F,Yes,6F,Day +2h,No Exterior Use,Uninsulated,"50% Usage, Low Flow",,None,None,None,No,None,,None,None,None,None,None,None,None,Yes,551.5 cfm/ton,1.266 Charge Frac,154.8 cfm/ton,1.405 Charge Frac,,,,11.25 ACH50,None,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.95",,60% CFL,100% Usage,100% Usage,,"ERV, 72%",None,"EF 16, 2001 Fed Standard-reference freezer",Gas Fireplace,Gas Grill,Gas Lighting,Electricity,Has Pool,Natural Gas,National Average,Typical Efficiency,None,2,0,South,"2ft, Back Windows",150%,102%,,,South,3.0 kWDC,None,Hour7,127,EF 10.2,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Propane Standard,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F18 B18 L18 R18,"Single, Clear, Metal"
+project_testing-0070.osw,,,,4A,,Hour3,10 kWh,5,,,None,,,Northeast,,None,80% Usage,None,None,80% Usage,Gas,120% Usage,62F,Yes,9F,Day Setup and Night Setback -2h,None,"NY, New York County",,"65 pints/day, 60% RH",None,100% Usage,20 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1000-1499,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Aluminum, Light",Steel Frame,Yes,None,76F,No,0F,None,None,"R-2, Demand",50% Usage,,Shared Cooling,80% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,No,None,None,None,None,,,,7 ACH50,None,None,None,None,"Finished, R-38","2ft R10 Perimeter, Vertical","Wood Stud, R-15","Summer = 0.7, Winter = 0.95",,None,None,None,,"ERV, 72%",EF 17.6,"EF 12, Average Installed",National Average,None,Gas Lighting,Other Fuel,Has Pool,Natural Gas,1.0 HP Pump,National Average,"Cooling Season, 7 days/wk",27,0,Northwest,"2ft, Back Windows",100%,79%,,,West,7.0 kWDC,None,Hour11,127,EF 21.9,105% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F9 B9 L9 R9,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0071.osw,,,,5A,,Hour21,"20 kWh, 80% Round Trip Efficiency",4,,,None,,,Midwest,,Gas,100% Usage,None,None,120% Usage,Electric Induction,80% Usage,73F,No,0F,None,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,40 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,2500-2999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Concrete,Yes,Fuel Oil,74F,Yes,6F,Day and Night -3h,No Exterior Use,"R-5, Timer",50% Usage,,"AC, SEER 10",60% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Fuel Oil Fuel Boiler,"Fuel Fireplace, 60% AFUE",Fuel Oil,20% Conditioned,None,No,None,None,None,None,,,,4 ACH50,None,Ceiling R-19,None,None,"Finished, R-19",None,"CMU, 6-in Hollow, R-11","Summer = 0.7, Winter = 0.7",,20% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.2,"EF 18, 2008 Energy Star",Gas Fireplace,Gas Grill,National Average,Natural Gas,None,None,None,Typical Efficiency,None,None,7,North,"2ft, Right Windows",25%,101%,,,Northeast,1.0 kWDC,None,Hour5,80,EF 10.5,95% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Fuel Oil Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,None,"Double, Clear, Non-metal, Air"
+project_testing-0072.osw,,,,3B,,Hour3,None,4,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,100% Usage,None,100% Usage,76F,Yes,2F,Day and Night Setup +5h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,80% Usage,20 ft^2,Wood,"30% Leakage to Outside, Uninsulated",Crawlspace,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Bottom,3,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Concrete,No,Fuel Oil,80F,Yes,6F,Day +4h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,None,None,None,Yes,None,,"Fuel Furnace, 76% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,None,None,None,None,Yes,551.5 cfm/ton,1.127 Charge Frac,452.3 cfm/ton,0.988 Charge Frac,,,,15 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"CMU, 6-in Hollow, R-15","Summer = 0.5, Winter = 0.95",,60% CFL,95% Usage,95% Usage,,Exhaust,EF 19.9,"EF 20, 2008 Energy Star Most Efficient",None,National Average,Gas Lighting,None,None,None,None,National Average,None,27,6,WNW,"2ft, Right Windows",400%,82%,,,None,None,None,Hour9,10,EF 6.7,95% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Renter,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,"Electric Heat Pump, 80 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0073.osw,,,,2A,,Hour22,None,2,,,"Standard Efficiency, 0.5F Offset",,,South,,Gas,80% Usage,EnergyStar,Yes,120% Usage,Electric Resistance,100% Usage,76F,Yes,9F,Day and Night Setup +1h,Double-Loaded Interior,"TX, Harris County",,"65 pints/day, 60% RH",290 Rated kWh,80% Usage,40 ft^2,Wood,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Attached,Multi-Family with 5+ Units,1500-1999,1500-2499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",8,4+,8+,"Brick, Light",Steel Frame,No,None,68F,Yes,12F,Day -3h,None,R-2,"50% Usage, Low Flow",,Shared Cooling,100% Conditioned,Central AC,No,Cooling Only,,None,None,None,None,None,None,Fan Coil Cooling Only,Yes,501.9 cfm/ton,0.988 Charge Frac,353.1 cfm/ton,0.848 Charge Frac,,,,1 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, R-19","Summer = 0.5, Winter = 0.7",,None,None,None,,Exhaust,EF 10.5,"EF 18, 2008 Energy Star",National Average,National Average,None,Other Fuel,Has Pool,Electricity,National Average,Typical Efficiency,None,2,4,WSW,"2ft, All Windows",50%,119%,,,None,None,None,Hour18,67,EF 21.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Electric Standard,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F9 B9 L9 R9,"Double, Clear, Metal, Air"
+project_testing-0074.osw,,,,5A,,Hour6,10 kWh,4,,,Premium Efficiency,,,Midwest,,Electric,120% Usage,EnergyStar,Yes,100% Usage,Electric Induction,120% Usage,80F,No,0F,None,Not Applicable,"IL, Cook County",,None,290 Rated kWh,120% Usage,30 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,4000+,4000+,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Shingle, Composition, Medium",Wood Frame,Yes,Electricity,67F,No,0F,None,No Exterior Use,Uninsulated,200% Usage,,Ducted Heat Pump,100% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 10, 6.2 HSPF",Ducted Heat Pump,Electricity ASHP,None,None,None,None,No,None,None,None,None,,,,15 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,60% CFL,100% Usage,95% Usage,,"HRV, 60%",EF 15.9,"EF 18, 2008 Energy Star",Gas Fireplace,National Average,National Average,Other Fuel,Has Pool,Electricity,National Average,Typical Efficiency,"Cooling Season, 7 days/wk",4,1,West,None,100%,106%,,,North,3.0 kWDC,None,Hour17,80,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F15 B15 L15 R15,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0075.osw,,,,2A,,Hour2,10 kWh,3,,,"Standard Efficiency, 0.5F Offset",,,South,,Gas,120% Usage,EnergyStar,Yes,80% Usage,Electric Induction,100% Usage,62F,No,0F,None,Double Exterior,"TX, Harris County",,None,290 Rated kWh,120% Usage,40 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Attached,Multi-Family with 5+ Units,4000+,4000+,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",20,4+,8+,"Vinyl, Light",Brick,No,Electricity,75F,Yes,3F,Day and Night -1h,No Exterior Use,Uninsulated,50% Usage,,Ducted Heat Pump,40% Conditioned,Ducted Heat Pump,Yes,None,,"ASHP, SEER 15, 8.5 HSPF",Ducted Heat Pump,Electricity ASHP,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,None,No,None,None,None,None,,,,8 ACH50,None,Ceiling R-38,"Wall R-10, Exterior","R-10, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,95% Usage,95% Usage,,Supply,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,None,Electricity,Has Pool,Electricity,0.75 HP Pump,Typical Efficiency,None,27,6,ESE,None,400%,86%,,,None,None,None,Hour14,67,EF 10.5,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Fuel Oil Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F15 B15 L0 R0,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0076.osw,,,,4A,,Hour13,10 kWh,4,,,Standard Efficiency,,,Northeast,,None,120% Usage,None,None,100% Usage,Electric Induction,100% Usage,69F,Yes,2F,Day Setup and Night Setback +1h,Single Exterior Front,"NY, New York County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,20 ft^2,Wood,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Left,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,1500-1999,1500-2499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Brick,No,Other Fuel,55F,No,0F,None,No Exterior Use,R-2,"100% Usage, Low Flow",,"Room AC, EER 12.0",80% Conditioned,Room AC,No,None,,"Fuel Boiler, 80% AFUE",Non-Ducted Heating,Other Fuel Fuel Boiler,None,None,None,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.6, Winter = 0.7",,100% LED,100% Usage,95% Usage,,Exhaust,None,"EF 20, 2008 Energy Star Most Efficient",National Average,None,Gas Lighting,None,Has Pool,Electricity,1.0 HP Pump,High Efficiency,None,12,9,Southeast,"2ft, Right Windows",100%,113%,,,None,None,None,Hour8,127,EF 21.9,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Propane Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F30 B30 L30 R30,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0077.osw,,,,3B,,Hour5,10 kWh,1,,,Standard Efficiency,,,West,,None,100% Usage,EnergyStar,Yes,80% Usage,Propane,80% Usage,60F,No,0F,None,Double Exterior,"CA, Los Angeles County",,"65 pints/day, 60% RH",290 Rated kWh,100% Usage,30 ft^2,Steel,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,3000-3999,2500-3999,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",12,4+,8+,"Fiber-Cement, Light",Wood Frame,Yes,None,68F,Yes,3F,Day and Night +3h,No Exterior Use,"R-2, Timer",100% Usage,,"Room AC, EER 8.5",20% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,0.25 ACH50,None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-19",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.7",,60% CFL,95% Usage,100% Usage,,"HRV, 60%",None,"EF 12, Average Installed",National Average,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",12,5,WSW,"2ft, Back Windows",150%,103%,,,East,5.0 kWDC,None,Hour18,10,EF 19.9,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",CA,Owner,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Metal"
+project_testing-0078.osw,,,,5A,,Hour16,None,5,,,Premium Efficiency,,,Midwest,,None,120% Usage,None,None,120% Usage,Propane,100% Usage,65F,Yes,9F,Day and Night Setup -5h,Not Applicable,"IL, Cook County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Wood,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,Right,None,None,16,Single-Family Attached,Single-Family Attached,Single-Family Attached,1000-1499,0-1499,Slab,None,"Single-Family Attached, Slab, Unvented Attic, No Garage",2,2,<8,"Vinyl, Light",Wood Frame,No,Fuel Oil,62F,Yes,6F,Day +5h,No Exterior Use,R-2,"50% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,452.3 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.127 Charge Frac,,,,18.5 ACH50,Uninsulated,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.7, Winter = 0.7",,20% LED,100% Usage,100% Usage,,"HRV, 60%",None,"EF 12, National Average",None,None,Gas Lighting,None,Has Pool,Natural Gas,1.0 HP Pump,Typical Efficiency,None,7,0,Southeast,None,150%,91%,,,None,None,Yes,Hour16,80,EF 10.5,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,None,IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Natural Gas Premium,,,Living Space,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0079.osw,,,,3B,,Hour2,None,1,,,Premium Efficiency,,,West,,Gas,80% Usage,None,None,120% Usage,Propane,120% Usage,77F,No,0F,None,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,100% Usage,30 ft^2,Fiberglass,None,None,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,Vented Attic,None,Right,None,None,30,Single-Family Attached,Single-Family Attached,Single-Family Attached,2000-2499,1500-2499,Unvented Crawlspace,None,"Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Natural Gas,63F,No,0F,None,No Exterior Use,R-2,200% Usage,,"Room AC, EER 8.5",<10% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,<10% Conditioned,None,Yes,601.0 cfm/ton,1.405 Charge Frac,402.7 cfm/ton,1.127 Charge Frac,,,,10 ACH50,R-19,Ceiling R-38,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated","Summer = 0.7, Winter = 0.7",,100% Incandescent,95% Usage,100% Usage,,"HRV, 60%",EF 6.7,"EF 16, 2001 Fed Standard-reference freezer",None,Gas Grill,Gas Lighting,Natural Gas,None,None,None,National Average,"Cooling Season, 7 days/wk",12,10+,SSW,"2ft, Back Windows",200%,110%,,,West,7.0 kWDC,No,Hour13,10,EF 19.9,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Renter,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Propane Tankless,,,None,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0080.osw,,,,2A,,Hour23,"20 kWh, 80% Round Trip Efficiency",3,,,Premium Efficiency,,,South,,None,120% Usage,Standard,Yes,80% Usage,Gas,120% Usage,75F,Yes,2F,Night Setup +2h,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,500-749,0-1499,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Stucco, Medium/Dark",Brick,Yes,Other Fuel,71F,No,0F,None,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"AC, SEER 13",<10% Conditioned,Central AC,Yes,None,,"Fuel Furnace, 80% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,30% Conditioned,None,No,None,None,None,None,,,,2.25 ACH50,None,Ceiling R-38,None,None,"Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19","Summer = 0.5, Winter = 0.7",,20% LED,100% Usage,100% Usage,,Exhaust,EF 10.5,"EF 12, National Average",None,Gas Grill,Gas Lighting,Electricity,None,None,None,None,"Cooling Season, 7 days/wk",7,0,West,"2ft, Back Windows",150%,89%,,,Southwest,7.0 kWDC,None,Hour9,67,EF 10.5,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,None,TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,None,"Double, Clear, Metal, Air"
+project_testing-0081.osw,,,,4A,,Hour17,"20 kWh, Outside",2,,,Premium Efficiency,,,Northeast,,Electric,100% Usage,None,None,80% Usage,Gas,120% Usage,60F,Yes,2F,Day Setup and Night Setback +5h,Double Exterior,"NY, New York County",,None,None,120% Usage,20 ft^2,Wood,"0% Leakage to Outside, Uninsulated",Living Space,None,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,9,None,5 to 9 Unit,Single-Family Detached,Multi-Family with 5+ Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",4,4+,<8,"Brick, Light",Wood Frame,Yes,Propane,63F,Yes,3F,Day +2h,No Exterior Use,"R-5, Timer",50% Usage,,"Room AC, EER 12.0",40% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 60% AFUE",Ducted Heating,Propane Fuel Furnace,None,None,None,None,No,None,None,None,None,,,,3.75 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Wood Stud, R-15","Summer = 0.5, Winter = 0.7",,60% CFL,100% Usage,100% Usage,,"HRV, 60%",EF 19.9,None,National Average,Gas Grill,Gas Lighting,None,None,None,None,Typical Efficiency,None,4,9,SSE,"2ft, Front Windows",150%,123%,,,Northwest,3.0 kWDC,None,Hour15,127,EF 6.7,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Natural Gas Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,None,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0082.osw,,,,5A,,Hour22,None,4,,,None,,,Midwest,,Electric,80% Usage,None,None,100% Usage,Electric Induction,80% Usage,76F w/ Building America season,Yes,5F,Day Setup and Night Setback +3h,Double-Loaded Interior,"IL, Cook County",,None,None,120% Usage,30 ft^2,Fiberglass,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2000-2499,1500-2499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",9,4+,8+,None,Concrete,Yes,Propane,71F,Yes,6F,Night +1h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 12.0",100% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 60% AFUE",Non-Ducted Heating,Propane Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Propane,20% Conditioned,None,Yes,154.8 cfm/ton,0.570 Charge Frac,303.5 cfm/ton,1.127 Charge Frac,,,,30 ACH50,None,Ceiling R-19,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,20% LED,95% Usage,100% Usage,,Exhaust,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,National Average,None,Natural Gas,None,None,None,None,None,12,5,Southwest,"2ft, Back Windows",150%,144%,,,Northwest,1.0 kWDC,None,Hour8,80,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,Living Space,Chicago Midway Ap,41.78,-87.75,F10 B30 L10 R10,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0083.osw,,,,3B,,Hour18,None,4,,,"Standard Efficiency, No usage",,,West,,Propane,100% Usage,Standard,Yes,80% Usage,Propane,80% Usage,74F,No,0F,None,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,30 ft^2,Fiberglass,"30% Leakage to Outside, Uninsulated",Unheated Basement,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1000-1499,0-1499,Unheated Basement,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",3,3,<8,"Fiber-Cement, Light",Wood Frame,Yes,Fuel Oil,76F,Yes,12F,Day -2h,None,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 8.5",60% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Fuel Oil Fuel Furnace,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,None,No,None,None,None,None,,,,40 ACH50,None,Ceiling R-38,"Wall R-5, Exterior","R-5, Exterior","Finished, R-19",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.7",,None,None,None,,Exhaust,EF 6.7,"EF 20, 2008 Energy Star Most Efficient",Gas Fireplace,Gas Grill,None,Other Fuel,Has Pool,Electricity,1.0 HP Pump,Typical Efficiency,None,7,0,NNW,None,400%,140%,,,Southwest,3.0 kWDC,None,Hour12,10,EF 10.2,100% Usage,Slate,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Fuel Oil Premium,,,Unheated Basement,Jack Northrop Fld H,33.92,-118.33,None,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0084.osw,,,,2A,,Hour2,"20 kWh, Outside",2,,,Standard Efficiency,,,South,,Propane,120% Usage,Standard,Yes,120% Usage,Electric Resistance,80% Usage,78F,No,0F,None,Not Applicable,"TX, Harris County",,"65 pints/day, 50% RH",318 Rated kWh,80% Usage,40 ft^2,Fiberglass,None,None,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,None,None,None,None,None,Mobile Home,Mobile Home,Mobile Home,2500-2999,2500-3999,Ambient,None,"Mobile Home, Ambient, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Concrete,Yes,Natural Gas,75F,Yes,12F,Night,None,Uninsulated,"50% Usage, Low Flow",,"Room AC, EER 12.0",<10% Conditioned,Room AC,No,None,,"Fuel Boiler, 76% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Fuel Oil,50% Conditioned,None,No,None,None,None,None,,,,5.25 ACH50,None,Ceiling R-38,None,None,"Finished, R-49",None,"CMU, 6-in Hollow, R-7","Summer = 0.7, Winter = 0.95",,None,None,None,,None,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",None,National Average,National Average,Other Fuel,Has Pool,Natural Gas,0.75 HP Pump,None,"Cooling Season, 7 days/wk",2,5,Northwest,"2ft, Right Windows",100%,85%,,,Northwest,5.0 kWDC,None,Hour22,67,None,100% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",TX,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Houston Bush Intercontinental,30.0,-95.37,F6 B6 L6 R6,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0085.osw,,,,2A,,Hour6,10 kWh,1,,,"Premium Efficiency, 0.5F Offset",,,South,,Gas,100% Usage,Standard,Yes,120% Usage,Gas,120% Usage,72F,No,0F,None,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH, 2.0 EF",290 Rated kWh,100% Usage,20 ft^2,Steel,None,None,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage",1,1,<8,"Vinyl, Light",Steel Frame,Yes,Other Fuel,60F,Yes,6F,Night -3h,No Exterior Use,"R-2, Demand",100% Usage,,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,"Electric Portable Heater, 100% Efficiency",Electricity,30% Conditioned,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,40 ACH50,None,Ceiling R-19,"Wall R-15, Exterior","R-15, Exterior","Finished, R-49",None,"Wood Stud, R-19","Summer = 0.7, Winter = 0.7",,60% CFL,100% Usage,100% Usage,,"ERV, 72%",EF 15.9,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,National Average,None,None,None,None,None,None,2,9,Southwest,"2ft, Right Windows",25%,99%,,,South,13.0 kWDC,None,Hour10,67,EF 6.7,100% Usage,"Tile, Clay or Ceramic",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",TX,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Occupied,,,Propane Premium,,,None,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Triple, Low-E, Non-metal, Air, L-Gain"
+project_testing-0086.osw,,,,5A,,Hour21,"20 kWh, 80% Round Trip Efficiency",1,,,"Standard Efficiency, 0.5F Offset",,,Midwest,,Gas,80% Usage,None,None,120% Usage,Propane,120% Usage,67F,Yes,2F,Day Setup and Night Setback +4h,Single Exterior Front,"IL, Cook County",,"65 pints/day, 60% RH",None,100% Usage,20 ft^2,Wood,None,None,1 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Middle,43,None,20 to 49 Unit,Single-Family Detached,Multi-Family with 5+ Units,4000+,4000+,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",21,4+,8+,"Wood, Medium/Dark",Steel Frame,Yes,Natural Gas,70F,Yes,3F,Day +3h,No Exterior Use,"R-2, Demand",100% Usage,,Shared Cooling,20% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Ducted Heating,Natural Gas Shared Heating,"Fuel Fireplace, 60% AFUE",Natural Gas,30% Conditioned,"Fan Coil Heating and Cooling, Fuel",Yes,154.8 cfm/ton,1.266 Charge Frac,254.0 cfm/ton,1.405 Charge Frac,,,,25 ACH50,None,None,None,None,"Finished, R-38","4ft R5 Under, Horizontal","Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,Exhaust,EF 21.9,"EF 20, 2008 Energy Star Most Efficient",None,None,Gas Lighting,Natural Gas,Has Pool,Other Fuel,1.0 HP Pump,Typical Efficiency,None,12,0,North,"2ft, All Windows",400%,103%,,,Southeast,1.0 kWDC,None,Hour10,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",IL,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Vacant,,,Natural Gas Tankless,,,None,Chicago Midway Ap,41.78,-87.75,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0087.osw,,,,4A,,Hour23,"20 kWh, Outside",1,,,Standard Efficiency,,,Northeast,,Propane,100% Usage,None,None,100% Usage,Gas,80% Usage,77F,No,0F,None,Double Exterior,"NY, New York County",,"65 pints/day, 60% RH",None,80% Usage,30 ft^2,Fiberglass,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Not Applicable,None,Middle,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Unvented Crawlspace,None,"Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",4,4+,<8,"Brick, Medium/Dark",Wood Frame,Yes,Electricity,64F,No,0F,None,None,"R-5, Timer","200% Usage, Low Flow",,Non-Ducted Heat Pump,100% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 29.3, 14 HSPF",Non-Ducted Heat Pump,Electricity MSHP,None,None,None,None,No,None,None,None,None,,,,1 ACH50,None,Ceiling R-13,"Wall R-10, Exterior","R-10, Exterior","Finished, R-30",None,"Wood Stud, R-15","Summer = 0.6, Winter = 0.7",,None,None,None,,"ERV, 72%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Other Fuel,None,None,None,None,"Cooling Season, 7 days/wk",27,1,SSW,"2ft, Left Windows",200%,84%,,,Northeast,7.0 kWDC,None,Hour1,127,EF 21.9,95% Usage,Wood Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Renter,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Propane Premium,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F12 B12 L12 R12,"Double, Clear, Non-metal, Air"
+project_testing-0088.osw,,,,4A,,Hour2,"20 kWh, 80% Round Trip Efficiency",2,,,Premium Efficiency,,,Northeast,,None,80% Usage,None,None,120% Usage,Electric Induction,120% Usage,64F,No,0F,None,None,"NY, New York County",,"65 pints/day, 50% RH, 2.0 EF",None,120% Usage,30 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Right,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",8,4+,8+,"Stucco, Light",Brick,No,Other Fuel,71F w/ Building America season,No,0F,None,No Exterior Use,"R-5, Timer","200% Usage, Low Flow",,"AC, SEER 10",100% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Non-Ducted Heating,Other Fuel Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,0.25 ACH50,None,Ceiling R-30,Uninsulated,Uninsulated,"Finished, R-49",None,"Brick, 12-in, 3-wythe, R-11","Summer = 0.6, Winter = 0.7",,100% Incandescent,100% Usage,100% Usage,,Supply,EF 10.2,"EF 12, Average Installed",National Average,Gas Grill,National Average,None,None,None,None,National Average,None,7,0,Southwest,"2ft, All Windows",50%,78%,,,None,None,None,Hour9,127,EF 15.9,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",NY,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Vacant,,,Natural Gas Premium,,,Living Space,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,None,"Double, Clear, Non-metal, Air"
+project_testing-0089.osw,,,,2A,,Hour22,None,2,,,"Premium Efficiency, 0.5F Offset",,,South,,Electric,80% Usage,Standard,Yes,80% Usage,Electric Induction,100% Usage,75F,Yes,5F,Night Setup +1h,Double Exterior,"TX, Harris County",,"65 pints/day, 50% RH",290 Rated kWh,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/ERCTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,ERCTc,None,Middle,None,Middle,326,None,50 or more Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Unvented Crawlspace,None,"Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage",8,4+,8+,"Vinyl, Light",Brick,No,Propane,65F,No,0F,None,None,"R-5, Timer",100% Usage,,"AC, SEER 10",40% Conditioned,Central AC,Yes,None,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Propane Fuel Boiler,None,None,None,None,Yes,551.5 cfm/ton,0.709 Charge Frac,601.0 cfm/ton,1.405 Charge Frac,,,,50 ACH50,None,Ceiling R-38,"Wall R-13, Interior","R-13, Interior","Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.5, Winter = 0.95",,None,None,None,,"HRV, 60%",EF 19.9,"EF 12, National Average",None,National Average,National Average,None,None,None,None,National Average,"Cooling Season, 7 days/wk",2,0,NNW,"2ft, Back Windows",200%,144%,,,None,None,None,Hour13,67,None,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Roof Pitch",TX,Not Available,1,,",,data/detailed_rates/County.tsv",",,","10.0,8,","0.12,0.089,","0.0,0,","2.1,3.9,","11.0,9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,Retail Electricity Cost,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.012,",Vacant,,,FIXME Fuel Oil Indirect,,,Living Space,Houston Bush Intercontinental,30.0,-95.37,F12 B12 L12 R12,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0090.osw,,,,5A,,Hour2,"20 kWh, Outside",5,,,"Standard Efficiency, No usage",,,Midwest,,Electric,100% Usage,None,None,120% Usage,Propane,100% Usage,62F,Yes,5F,Night Setback -1h,Not Applicable,"IL, Cook County",,"65 pints/day, 50% RH",318 Rated kWh,120% Usage,40 ft^2,Wood,None,None,None,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Unvented Attic,None,Right,None,None,24,Single-Family Attached,Single-Family Attached,Single-Family Attached,2500-2999,2500-3999,Slab,None,"Single-Family Attached, Slab, Unvented Attic, No Garage",3,3,<8,"Brick, Medium/Dark",Concrete,No,Natural Gas,80F,No,0F,None,No Exterior Use,R-2,100% Usage,,Shared Cooling,40% Conditioned,Central AC,No,Cooling Only,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Natural Gas Fuel Wall/Floor Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,<10% Conditioned,Fan Coil Cooling Only,Yes,501.9 cfm/ton,0.988 Charge Frac,353.1 cfm/ton,0.988 Charge Frac,,,,"7 ACH50, 0.5 Shelter Coefficient",Uninsulated,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","CMU, 6-in Hollow, R-11","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,None,EF 10.2,"EF 20, 2008 Energy Star Most Efficient",None,Gas Grill,National Average,None,Has Pool,Other Fuel,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",4,8,East,"2ft, Front Windows",200%,113%,,,None,None,Yes,Hour13,80,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, Latitude - 15 degrees",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,"Electric Heat Pump, 66 gal, 3.35 UEF",,,None,Chicago Midway Ap,41.78,-87.75,F18 B18 L18 R18,"Single, Clear, Non-metal"
+project_testing-0091.osw,,,,3B,,Hour4,"20 kWh, 80% Round Trip Efficiency",5,,,"Premium Efficiency, 0.5F Offset",,,West,,None,100% Usage,None,None,80% Usage,Gas,120% Usage,72F,Yes,5F,Day Setup and Night Setback -3h,None,"CA, Los Angeles County",,"65 pints/day, 60% RH",None,120% Usage,30 ft^2,Fiberglass,None,None,2 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2000-2499,1500-2499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",10,4+,8+,"Stucco, Medium/Dark",Concrete,No,Natural Gas,55F,No,0F,None,No Exterior Use,"R-2, Timer",200% Usage,,Shared Cooling,<10% Conditioned,Central AC,No,Cooling Only,,"Fuel Boiler, 90% AFUE",Non-Ducted Heating,Natural Gas Fuel Boiler,"Fuel Fireplace, 60% AFUE",Natural Gas,20% Conditioned,Fan Coil Cooling Only,Yes,154.8 cfm/ton,0.848 Charge Frac,601.0 cfm/ton,0.570 Charge Frac,,,,2 ACH50,None,None,None,None,"Finished, Uninsulated",Uninsulated,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 15.9,"EF 12, National Average",Gas Fireplace,National Average,National Average,Natural Gas,Has Pool,None,National Average,High Efficiency,None,None,3,Northeast,"2ft, Right Windows",100%,84%,,,None,None,None,Hour18,10,EF 21.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Owner,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,Fuel Oil Standard,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F15 B15 L0 R0,"Double, Clear, Non-metal, Air, Exterior Clear Storm"
+project_testing-0092.osw,,,,3B,,Hour18,None,5,,,Premium Efficiency,,,West,,Gas,100% Usage,EnergyStar,Yes,80% Usage,Electric Resistance,80% Usage,78F,No,0F,None,None,"CA, Los Angeles County",,None,None,80% Usage,30 ft^2,Steel,None,None,3 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Middle,None,Middle,326,None,50 or more Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,2500-2999,2500-3999,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",14,4+,8+,"Stucco, Medium/Dark",Steel Frame,Yes,Fuel Oil,67F,No,0F,None,No Exterior Use,Uninsulated,"200% Usage, Low Flow",,None,None,None,No,Heating Only,,Shared Heating,Non-Ducted Heating,Fuel Oil Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",No,None,None,None,None,,,,25 ACH50,None,Ceiling R-38,"Wall R-15, Exterior","R-15, Exterior","Finished, R-38",None,"Wood Stud, R-7","Summer = 0.7, Winter = 0.7",,20% LED,100% Usage,95% Usage,,"HRV, 60%",EF 21.9,"EF 12, National Average",Gas Fireplace,None,None,Other Fuel,None,None,None,High Efficiency,None,7,0,ENE,None,50%,82%,,,Southwest,7.0 kWDC,None,Hour20,10,EF 10.5,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Premium,,,None,Jack Northrop Fld H,33.92,-118.33,F10 B30 L10 R10,"Single, Clear, Metal, Exterior Clear Storm"
+project_testing-0093.osw,,,,3B,,Hour21,"20 kWh, 80% Round Trip Efficiency",5,,,Premium Efficiency,,,West,,Propane,80% Usage,None,None,100% Usage,Gas,100% Usage,65F,Yes,2F,Night Setback -2h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH",None,80% Usage,20 ft^2,Fiberglass,None,None,2 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Middle,19,None,10 to 19 Unit,Single-Family Detached,Multi-Family with 5+ Units,750-999,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",13,4+,8+,"Shingle, Asbestos, Medium",Steel Frame,Yes,Fuel Oil,78F,Yes,3F,Day +5h,No Exterior Use,"R-2, Timer","100% Usage, Low Flow",,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,,"Fuel Wall/Floor Furnace, 68% AFUE",Non-Ducted Heating,Fuel Oil Fuel Wall/Floor Furnace,None,None,None,None,Yes,303.5 cfm/ton,0.988 Charge Frac,551.5 cfm/ton,0.848 Charge Frac,,,,50 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Wood Stud, R-19","Summer = 0.7, Winter = 0.95",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 12, Average Installed",National Average,None,None,None,None,None,None,None,"Cooling Season, 7 days/wk",27,0,West,"2ft, Right Windows",100%,79%,,,East,9.0 kWDC,None,Hour7,10,EF 10.2,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Propane Standard,,,None,Jack Northrop Fld H,33.92,-118.33,None,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0094.osw,,,,4A,,Hour10,None,5,,,"Standard Efficiency, No usage",,,Northeast,,None,100% Usage,EnergyStar,Yes,100% Usage,None,100% Usage,68F,No,0F,None,None,"NY, New York County",,None,290 Rated kWh,120% Usage,30 ft^2,Fiberglass,None,None,1 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/NYSTc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,NYSTc,None,Middle,None,Middle,43,None,20 to 49 Unit,"Multifamily with 5+ units, 8+ stories",Multi-Family with 5+ Units,500-749,0-1499,Unheated Basement,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",13,4+,8+,"Shingle, Composition, Medium",Wood Frame,No,None,69F,Yes,3F,Day -4h,No Exterior Use,"R-2, Timer",50% Usage,,"Room AC, EER 10.7",60% Conditioned,Room AC,No,None,,None,None,None,None,None,None,None,No,None,None,None,None,,,,20 ACH50,None,Ceiling R-13,"Wall R-13, Interior","R-13, Interior","Finished, R-19",None,"Wood Stud, R-11","Summer = 0.7, Winter = 0.7",,100% LED,100% Usage,100% Usage,,"HRV, 60%",EF 6.7,"EF 12, Average Installed",Gas Fireplace,None,Gas Lighting,Other Fuel,None,None,None,None,"Cooling Season, 7 days/wk",12,1,NNE,"2ft, Left Windows",400%,106%,,,None,None,None,Hour13,127,EF 15.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, Roof Pitch",NY,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,8.8,","0.12,0.094,","0.0,0,","2.1,3.5,","11.0,9.9,","1.1,0.094,","0.0,0,","2.0,3.9,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0128,",Occupied,,,Electric Tankless,,,None,New York-Central Park Observatory-Belevedere Castle,40.7793,-73.9691,F15 B15 L0 R0,"Double, Low-E, Non-metal, Air, M-Gain"
+project_testing-0095.osw,,,,3B,,Hour15,"20 kWh, Outside",3,,,Standard Efficiency,,,West,,Electric,100% Usage,None,None,80% Usage,Propane,120% Usage,67F,Yes,5F,Day Setup -1h,None,"CA, Los Angeles County",,"65 pints/day, 50% RH",290 Rated kWh,100% Usage,30 ft^2,Fiberglass,None,None,None,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Middle,19,None,10 to 19 Unit,"Multifamily with 5+ units, 4-7 stories",Multi-Family with 5+ Units,1000-1499,0-1499,Slab,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",9,4+,8+,"Stucco, Light",Wood Frame,No,Electricity,74F,Yes,12F,Day and Night -4h,No Exterior Use,Uninsulated,50% Usage,,Shared Cooling,<10% Conditioned,Central AC,No,Heating and Cooling,,Shared Heating,Non-Ducted Heating,Electricity Shared Heating,"Fuel Fireplace, 60% AFUE",Fuel Oil,40% Conditioned,"Fan Coil Heating and Cooling, Electricity",No,None,None,None,None,,,,6 ACH50,None,None,None,None,"Finished, R-38","2ft R5 Perimeter, Vertical","Wood Stud, R-11","Summer = 0.5, Winter = 0.7",,100% CFL,95% Usage,95% Usage,,None,EF 6.7,"EF 16, 2001 Fed Standard-reference freezer",National Average,Gas Grill,National Average,Other Fuel,Has Pool,None,National Average,Typical Efficiency,None,7,0,Northwest,"2ft, All Windows",25%,99%,,,None,None,None,Hour18,10,EF 19.9,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, South, 10 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Natural Gas Standard,,,Living Space,Jack Northrop Fld H,33.92,-118.33,F15 B15 L15 R15,"Single, Clear, Non-metal"
+project_testing-0096.osw,,,,3B,,Hour11,10 kWh,5,,,None,,,West,,Electric,120% Usage,None,None,120% Usage,None,80% Usage,74F,Yes,9F,Night Setup +4h,Single Exterior Front,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",None,120% Usage,40 ft^2,Wood,None,None,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Right,None,Bottom,2,None,2 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,4000+,4000+,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",1,1,<8,"Fiber-Cement, Light",Concrete,No,Electricity,63F,Yes,6F,Day,No Exterior Use,R-2,"100% Usage, Low Flow",,Non-Ducted Heat Pump,40% Conditioned,Non-Ducted Heat Pump,No,None,,"MSHP, SEER 29.3, 14 HSPF",Non-Ducted Heat Pump,Electricity MSHP,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,No,None,None,None,None,,,,"7 ACH50, 0.5 Shelter Coefficient",None,Uninsulated,"Wall R-13, Interior","R-13, Interior","Finished, R-38",None,"CMU, 6-in Hollow, Uninsulated","Summer = 0.5, Winter = 0.95",,100% Incandescent,95% Usage,100% Usage,,Supply,EF 19.9,"EF 16, 2001 Fed Standard-reference freezer",None,None,National Average,None,Has Pool,Natural Gas,National Average,High Efficiency,"Cooling Season, 7 days/wk",4,0,ENE,"2ft, All Windows",150%,94%,,,None,None,None,Hour12,10,None,105% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Natural Gas Premium,,,Crawlspace,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Double, Clear, Non-metal, Air"
+project_testing-0097.osw,,,,5A,,Hour7,"20 kWh, Outside",1,,,"Premium Efficiency, 0.5F Offset",,,Midwest,,Gas,80% Usage,Standard,Yes,80% Usage,Electric Resistance,80% Usage,66F,No,0F,None,Not Applicable,"IL, Cook County",,None,318 Rated kWh,100% Usage,20 ft^2,Fiberglass,"0% Leakage to Outside, Uninsulated",Heated Basement,1 ft,None,data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,Vented Attic,None,None,None,None,None,Single-Family Detached,Single-Family Detached,Single-Family Detached,1500-1999,1500-2499,Heated Basement,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",3,3,<8,"Wood, Medium/Dark",Wood Frame,No,Other Fuel,55F,No,0F,None,No Exterior Use,"R-2, Demand",50% Usage,,"Room AC, EER 10.7",<10% Conditioned,Room AC,Yes,None,,"Fuel Furnace, 92.5% AFUE",Ducted Heating,Other Fuel Fuel Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,40% Conditioned,None,Yes,353.1 cfm/ton,0.570 Charge Frac,700.2 cfm/ton,1.127 Charge Frac,,,,0.5 ACH50,R-13,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19","Summer = 0.6, Winter = 0.7",,100% LED,95% Usage,95% Usage,,"ERV, 72%",EF 10.5,"EF 12, National Average",Gas Fireplace,Gas Grill,National Average,None,Has Pool,Electricity,0.75 HP Pump,None,"Cooling Season, 7 days/wk",None,3,Southwest,None,75%,108%,,,None,None,No,Hour20,80,EF 6.7,95% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,None,IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Propane Standard,,,None,Chicago Midway Ap,41.78,-87.75,F30 B30 L30 R30,"Double, Clear, Metal, Air, Exterior Clear Storm"
+project_testing-0098.osw,,,,5A,,Hour20,"20 kWh, 80% Round Trip Efficiency",5,,,"Standard Efficiency, No usage",,,Midwest,,Electric,100% Usage,None,None,100% Usage,Gas,120% Usage,73F,No,0F,None,Single Exterior Front,"IL, Cook County",,"65 pints/day, 50% RH, 2.0 EF",None,80% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/RFCWc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,RFCWc,None,Right,None,Bottom,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,500-749,0-1499,Slab,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",2,2,<8,"Shingle, Asbestos, Medium",Concrete,Yes,Electricity,71F,Yes,6F,Night +3h,No Exterior Use,"R-2, Timer",50% Usage,,"AC, SEER 8",40% Conditioned,Central AC,Yes,None,,"Electric Furnace, 100% AFUE",Ducted Heating,Electricity Electric Furnace,"Fuel Fireplace, 60% AFUE",Natural Gas,50% Conditioned,None,No,None,None,None,None,,,,2 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"CMU, 6-in Hollow, R-15","Summer = 0.7, Winter = 0.95",,100% CFL,95% Usage,100% Usage,,Exhaust,EF 17.6,"EF 16, 2001 Fed Standard-reference freezer",National Average,None,None,Other Fuel,None,None,None,National Average,"Cooling Season, 7 days/wk",27,7,East,"2ft, Right Windows",200%,78%,,,East,9.0 kWDC,None,Hour18,80,EF 19.9,95% Usage,"Tile, Concrete",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",IL,Owner,1,,",,data/detailed_rates/County.tsv",",,","10.0,9.9,","0.12,0.087,","0.0,0,","2.1,3.4,","11.0,8.7,","1.1,0.091,","0.0,0,","2.0,3.4,","NetMetering,NetMetering,",",,","$/kW,$/kW,","2.5,2.5,","User-Specified,User-Specified,","0.035,0.035,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,","0.015,0.0186,",Occupied,,,Electric Premium,,,None,Chicago Midway Ap,41.78,-87.75,None,"Single, Clear, Non-metal, Exterior Clear Storm"
+project_testing-0099.osw,,,,3B,,Hour0,None,1,,,Standard Efficiency,,,West,,Propane,120% Usage,Standard,Yes,100% Usage,None,100% Usage,67F,Yes,2F,Day Setup -5h,Not Applicable,"CA, Los Angeles County",,"65 pints/day, 60% RH",318 Rated kWh,80% Usage,40 ft^2,Wood,"20% Leakage to Outside, Uninsulated",Crawlspace,3 ft,"EV, 5000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,None,Right,None,None,90,Single-Family Attached,Single-Family Attached,Single-Family Attached,1500-1999,1500-2499,Vented Crawlspace,None,"Single-Family Attached, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Wood, Medium/Dark",Wood Frame,Yes,Propane,75F,Yes,3F,Day and Night +1h,No Exterior Use,Uninsulated,200% Usage,,"AC, SEER 8",80% Conditioned,Central AC,Yes,Heating Only,,Shared Heating,Non-Ducted Heating,Propane Shared Heating,None,None,None,"Boiler Baseboards Heating Only, Fuel",Yes,402.7 cfm/ton,1.127 Charge Frac,501.9 cfm/ton,0.709 Charge Frac,,,,0.75 ACH50,None,Ceiling R-38,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-7","Summer = 0.5, Winter = 0.7",,60% CFL,95% Usage,95% Usage,,"ERV, 72%",EF 19.9,"EF 12, Average Installed",Gas Fireplace,National Average,National Average,Electricity,Has Pool,None,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",None,5,NNW,"2ft, Back Windows",50%,110%,,,North,5.0 kWDC,None,Hour16,10,None,100% Usage,"Asphalt Shingles, Medium",1100000.0,1,1,2007,31,12,60,"40 sqft, West, 70 degrees",CA,Renter,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Occupied,,,"Electric Heat Pump, 50 gal, 3.45 UEF",,,None,Jack Northrop Fld H,33.92,-118.33,F30 B30 L30 R30,"Single, Clear, Non-metal"
+project_testing-0100.osw,,,,3B,,Hour23,"20 kWh, 80% Round Trip Efficiency",2,,,"Premium Efficiency, 0.5F Offset",,,West,,Electric,80% Usage,EnergyStar,Yes,100% Usage,None,120% Usage,60F,No,0F,None,None,"CA, Los Angeles County",,"65 pints/day, 50% RH, 2.0 EF",318 Rated kWh,120% Usage,20 ft^2,Steel,"0% Leakage to Outside, Uninsulated",Living Space,3 ft,"EV, 4000 miles, 0.3 kWh/mi",data/cambium/2022/LRMER_MidCase_15,kg/MWh,/home/runner/work/resstock/resstock/lib/resources/data/cambium/2022/LRMER_MidCase_15/CAMXc.csv,lb/MBtu,195.9,147.3,177.8,LRMER_MidCase_15,CO2e,200.0,,,CAMXc,None,Left,None,Top,4,None,3 or 4 Unit,Multifamily with 2-4 Units,Multi-Family with 2 - 4 Units,0-499,0-1499,Vented Crawlspace,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",2,2,<8,"Fiber-Cement, Light",Brick,No,Electricity,60F,No,0F,None,No Exterior Use,"R-2, Timer","200% Usage, Low Flow",,"AC, SEER 15",80% Conditioned,Central AC,Yes,None,,"Electric Wall Furnace, 100% AFUE",Non-Ducted Heating,Electricity Electric Wall Furnace,"Fuel Fireplace, 60% AFUE",Propane,40% Conditioned,None,No,None,None,None,None,,,,1.5 ACH50,None,Ceiling R-13,"Wall R-5, Exterior","R-5, Exterior","Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated","Summer = 0.6, Winter = 0.7",,20% LED,95% Usage,100% Usage,,"ERV, 72%",EF 15.9,"EF 12, National Average",Gas Fireplace,National Average,Gas Lighting,Other Fuel,Has Pool,None,0.75 HP Pump,High Efficiency,"Cooling Season, 7 days/wk",7,0,Northwest,"2ft, Front Windows",75%,85%,,,None,None,None,Hour16,10,EF 15.9,105% Usage,Composition Shingles,1100000.0,1,1,2007,31,12,60,"40 sqft, West, Latitude + 15 degrees",CA,Not Available,1,,",,data/detailed_rates/County.tsv",",,/home/runner/work/resstock/resstock/lib/resources/data/detailed_rates/Tiered/Sample Tiered Rate.json","10.0,8.8,","0.12,0.083,","0.0,0,0","2.1,3.8,2.7","11.0,11.7,8.1","1.1,0.091,0.118","0.0,0,0","2.0,2.8,3.6","NetMetering,FeedInTariff,FeedInTariff",",,","$/kW,$,$/kW","2.5,7.5,2.5","User-Specified,,","0.035,,","Bills,Bills2,Bills3",",data/simple_rates/State.tsv,","0.0,0,0","0.015,0.0195,0.0015",Vacant,,,Fuel Oil Standard,,,None,Jack Northrop Fld H,33.92,-118.33,F18 B18 L18 R18,"Single, Clear, Metal, Exterior Clear Storm"
diff --git a/test/base_results/baseline/annual/results_output.csv b/test/base_results/baseline/annual/results_output.csv
index 1fa10dada4..4e522042d2 100644
--- a/test/base_results/baseline/annual/results_output.csv
+++ b/test/base_results/baseline/annual/results_output.csv
@@ -250,102 +250,102 @@ project_national-0248.osw,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,
project_national-0249.osw,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,69.84,405.75,23.73,1013.41,4341.7,0.0,102.83,0.0,308.23,0.0,438.31,0.0,0.0,0.0,0.0,0.0,0.0,291.7,103.73,3453.55,20.48,0.0,0.0,13981.8,0.0,0.0,2964.79,0.0,0.0,0.0,26.35,417.38,0.0,13981.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10606.64,1865.18,0.0,0.0,0.0,0.0,408.86,12880.68,26862.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26862.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,1.365,0.08,3.773,16.268,0.0,0.333,0.0,1.092,0.0,1.33,0.0,0.0,0.0,0.0,0.0,0.0,0.905,0.341,11.361,0.075,0.0,0.0,0.0,0.0,10.261,0.0,0.0,0.0,0.095,1.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.007,12.662,0.0,0.0,0.0,0.0,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.435,136.435,0.0,48.989,48.989,0.0,87.445,0.0,0.0,0.0,305.7,726.3,3093.7,8054.6,39012.0,0.0,57318.0,2178.0,5511.0,800.0,8488.0,3205.0,112.0,3589.0,1426.0,4024.0,4520.0,0.0,0.0,0.0,28492.0,1909.0,9706.0,3178.0,207.0,12058.0,3512.0,22318.0,0.0,0.0,0.0,57318.0,8082.0,7964.0,92.12,18.32,51.426,58.859,0.0,6.075,0.0,0.0,3.734,7525.2,7393.6,5545.1,29.935,55.073,0.0,32.0,40.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,1643.68,144.0,0.0,1787.68,0.0,0.0,0.0,651.72,144.0,795.72,0.0,0.0,0.0,2583.4,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,918.53,1943.0,0.0,3310.0,0.0,1367.0,3886.0,0.0,131.0,2172.4,39.01,0.0,57.32,0.0,40.0,0.0,2909.0,3402.8,1358.4,314.5,17.24,17.49,17.93,4.45,2.97,3.17,1.25,0.59,0.54,16.27,18.0,6.96,5.22,3281.0,7.53
project_national-0250.osw,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,12.24,129.4,4.02,0.0,67.38,0.0,0.0,0.0,0.0,0.0,35.26,0.0,0.0,0.0,0.0,0.0,0.0,9.58,0.0,101.44,4.83,0.0,0.0,1014.85,0.0,0.0,562.08,0.0,0.0,0.0,4.98,83.64,0.0,1014.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3846.1,2133.51,0.0,0.0,0.0,0.0,419.04,6398.66,7413.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7413.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.186,2.262,0.085,0.0,1.026,0.0,0.0,0.0,0.0,0.0,0.506,0.0,0.0,0.0,0.0,0.0,0.0,0.134,0.0,1.599,0.056,0.0,0.0,0.0,0.0,9.06,0.0,0.0,0.0,0.097,1.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.111,14.484,0.0,0.0,0.0,0.0,2.845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.824,59.824,0.0,16.384,16.384,0.0,43.44,0.0,0.0,0.0,1162.7,0.0,3340.4,9352.4,2573.0,0.0,14760.0,0.0,1842.0,400.0,2242.0,0.0,0.0,0.0,0.0,1299.0,2860.0,0.0,0.0,0.0,10214.0,764.0,5291.0,0.0,0.0,0.0,0.0,10513.0,0.0,0.0,0.0,14760.0,1846.0,2401.0,87.98,17.6,2.218,20.48,0.0,7.506,0.0,0.0,3.715,11370.5,10236.4,11370.5,2.805,27.642,0.0,205.0,32.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,960.97,144.0,0.0,1104.97,0.0,0.0,0.0,618.2,144.0,762.2,0.0,0.0,0.0,1867.17,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,0.0,0.0,0.0,2.57,0.0,14.76,0.0,30.0,0.0,201.2,201.2,0.0,60.3,16.2,17.59,16.56,1.98,2.1,1.77,0.34,0.32,0.32,15.27,15.36,7.75,9.75,1029.0,11.37
project_testing-0001.osw,0,0.0,0.091,0.0,0.0,0.0,-0.579,2.117,-0.104,0.0,0.011,0.0,0.0,1.723,0.0,0.0,-1.888,-0.294,0.0,-0.959,8.946,0.0,2.686,0.0,0.0,0.0,17.88,-3.578,-0.121,0.0,2.817,0.0,0.0,7.647,0.0,0.0,16.884,12.762,0.0,26.639,-12.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.57,728.63,0.0,0.0,0.0,0.0,0.0,91.32,0.0,0.0,0.0,0.0,0.0,36.06,0.0,0.0,0.0,322.27,0.0,0.0,3053.38,0.0,0.0,0.0,0.0,1038.74,0.0,0.0,667.79,0.0,3053.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,770.46,0.0,0.0,0.0,770.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2290.66,0.0,2290.66,28854.55,0.0,0.0,0.0,0.0,0.0,8502.98,0.0,0.0,0.0,0.0,8502.98,28854.55,0.0,0.0,0.0,0.0,0.0,14237.07,0.0,0.0,0.0,0.0,14237.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.783,3.236,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,0.0,0.0,0.0,0.165,0.0,0.0,0.0,1.306,0.0,0.0,0.0,0.0,0.0,0.0,5.61,0.0,0.0,2.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.551,0.0,0.0,0.0,0.0,0.0,0.0,47.823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,152.668,152.668,0.0,14.175,14.175,3.933,15.551,47.823,71.185,0.0,0.0,0.0,0.0,0.0,23321.0,0.0,43082.0,0.0,2426.0,400.0,2826.0,0.0,564.0,0.0,0.0,1219.0,4060.0,1459.0,0.0,0.0,16637.0,937.0,8398.0,0.0,1252.0,0.0,0.0,10389.0,3745.0,0.0,9056.0,43082.0,5694.0,12946.0,89.6,4.28,9.009,71.719,0.0,0.0,0.0,0.0,3.119,2381.9,2381.9,882.4,13.308,43.656,0.0,0.0,7.0,0.0,0.0,0.0,361.43,118.8,0.0,480.23,96.2,0.0,96.2,14.15,104.4,118.55,1775.1,0.0,1775.1,3794.13,1324.05,0.0,1324.05,0.0,0.0,0.0,0.0,0.0,0.0,594.14,144.0,0.0,738.14,125.58,0.0,125.58,138.29,144.0,282.29,1104.78,0.0,1104.78,3318.57,1067.78,0.0,1067.78,0.0,0.0,0.0,0.0,0.0,0.0,498.53,120.0,0.0,618.53,59.42,0.0,59.42,171.06,132.0,303.06,1044.18,0.0,1044.18,3092.97,1067.78,0.0,1067.78,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2678.0,0.0,2678.0,0.0,43.7,0.0,2678.0,23.32,0.0,25.85,17.23,30.0,216.0,1728.0,1728.0,0.0,518.4,11.18,9.61,9.62,1.28,0.79,0.75,0.26,0.2,0.15,11.91,10.0,1.8,0.87,4910.0,2.38
-project_testing-0002.osw,0,-0.004,0.023,0.0,0.0,0.0,-0.186,3.786,-0.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.074,0.531,0.0,-0.038,1.171,-0.012,0.104,0.0,0.0,0.0,4.476,-5.51,-0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.91,2.267,0.0,0.675,-1.503,0.0,0.0,0.0,0.0,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.05,214.21,0.0,0.0,0.0,0.0,0.64,0.0,0.0,0.0,54.85,0.0,16.38,0.0,0.0,0.0,0.0,0.0,0.0,-150.03,0.0,0.0,0.0,0.0,0.0,-1030.28,0.0,280.13,0.0,880.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.14,0.0,0.0,0.0,0.0,15.14,0.0,0.0,0.0,0.0,0.0,102.42,0.0,0.0,0.0,0.0,0.0,0.0,102.42,-32.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,997.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,4.395,4.033,0.0,0.0,0.0,0.0,0.013,0.0,0.0,0.0,1.012,0.0,0.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.883,0.0,4.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.438,15.445,0.0,-6.21,14.672,0.077,0.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7595.0,0.0,23918.0,0.0,5282.0,800.0,6082.0,0.0,124.0,0.0,0.0,3959.0,4520.0,0.0,0.0,0.0,11669.0,1990.0,1076.0,0.0,148.0,0.0,0.0,12217.0,0.0,0.0,6893.0,23918.0,3561.0,1098.0,95.0,32.9,11.186,-0.272,0.0,0.0,0.0,0.0,1.011,1910.1,1910.1,1257.8,8.565,8.602,0.0,0.0,0.0,0.0,0.0,0.0,382.7,96.0,-437.3,41.4,2.17,0.0,2.17,0.65,108.0,108.65,0.0,0.0,0.0,152.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,536.99,144.0,-591.59,89.4,2.7,0.0,2.7,7.21,144.0,151.21,0.0,0.0,0.0,243.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.01,270.0,-579.71,206.3,1.17,0.0,1.17,7.65,132.0,139.65,0.0,0.0,0.0,347.12,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,1138.0,1138.0,0.0,0.0,0.0,7.6,0.0,21.53,2.39,50.0,140.8,1126.6,1126.6,0.0,60.4,13.99,13.71,12.27,1.25,0.65,0.85,0.29,0.13,0.14,14.45,6.91,1.81,0.99,4864.0,1.91
+project_testing-0002.osw,0,-0.004,0.023,0.0,0.0,0.0,-0.186,3.786,-0.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.074,0.531,0.0,-0.038,1.171,-0.012,0.104,0.0,0.0,0.0,4.476,-5.51,-0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.91,2.267,0.0,0.675,-1.503,0.0,0.0,0.0,0.0,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.05,214.21,0.0,0.0,0.0,0.0,0.64,0.0,0.0,0.0,54.85,0.0,16.38,0.0,0.0,0.0,0.0,0.0,0.0,-150.03,0.0,0.0,0.0,0.0,0.0,-1030.28,0.0,280.13,0.0,880.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.14,0.0,0.0,0.0,0.0,15.14,0.0,0.0,0.0,0.0,0.0,102.42,0.0,0.0,0.0,0.0,0.0,0.0,102.42,-32.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,997.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,4.395,4.033,0.0,0.0,0.0,0.0,0.013,0.0,0.0,0.0,1.012,0.0,0.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.883,0.0,4.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.438,15.445,0.0,-6.21,14.672,0.077,0.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7595.0,0.0,23918.0,0.0,5282.0,800.0,6082.0,0.0,124.0,0.0,0.0,3959.0,4520.0,0.0,0.0,0.0,11669.0,1990.0,1076.0,0.0,148.0,0.0,0.0,12217.0,0.0,0.0,6893.0,23918.0,3561.0,1098.0,95.0,32.9,11.186,-0.272,0.0,0.0,0.0,0.0,1.011,1910.1,1910.1,1257.8,8.565,8.602,0.0,0.0,0.0,0.0,0.0,0.0,382.7,246.0,-544.69,84.02,2.17,0.0,2.17,0.65,108.0,108.65,0.0,0.0,0.0,194.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,536.99,144.0,-591.59,89.4,2.7,0.0,2.7,7.21,144.0,151.21,0.0,0.0,0.0,243.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.01,270.0,-579.71,206.3,1.17,0.0,1.17,7.65,132.0,139.65,0.0,0.0,0.0,347.12,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,1138.0,1138.0,0.0,0.0,0.0,7.6,0.0,21.53,2.39,50.0,140.8,1126.6,1126.6,0.0,60.4,13.99,13.71,12.27,1.25,0.65,0.85,0.29,0.13,0.14,14.45,6.91,1.81,0.99,4864.0,1.91
project_testing-0003.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.084,2.191,0.0,0.105,0.0,38.983,-4.876,0.527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,262.33,0.0,0.0,0.0,0.0,231.79,0.0,0.0,0.0,181.58,0.0,71.13,0.0,0.0,0.0,0.0,0.0,0.0,3145.99,744.15,744.7,0.0,0.0,0.0,0.0,0.0,910.32,0.0,3145.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9330.57,0.0,0.0,0.0,0.0,9330.57,0.0,0.0,0.0,0.0,0.0,4509.66,0.0,0.0,0.0,0.0,0.0,0.0,4509.66,16986.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16986.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,1.031,0.0,0.0,0.0,0.0,0.847,0.0,0.0,0.0,0.715,0.0,0.352,0.0,0.0,0.0,0.0,0.0,0.0,2.985,2.947,0.0,0.0,0.0,0.0,0.0,3.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.864,90.864,0.0,12.62,12.62,47.629,30.615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38703.0,0.0,3866.0,600.0,4466.0,0.0,564.0,0.0,0.0,2733.0,4290.0,0.0,0.0,0.0,9961.0,2374.0,0.0,0.0,1252.0,0.0,0.0,25356.0,0.0,0.0,0.0,38703.0,12095.0,0.0,89.6,4.28,0.296,61.643,0.0,0.0,0.0,0.0,1.697,1806.9,1605.4,1321.5,5.311,56.137,0.0,0.0,350.0,0.0,0.0,0.0,321.77,118.8,0.0,440.57,1165.03,0.0,1165.03,27.86,104.4,132.26,0.0,0.0,0.0,1737.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,528.93,144.0,0.0,672.93,1520.81,0.0,1520.81,272.25,144.0,416.25,0.0,0.0,0.0,2609.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,443.81,120.0,0.0,563.81,719.58,0.0,719.58,336.77,132.0,468.77,0.0,0.0,0.0,1752.16,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,0.0,0.0,0.0,0.0,0.0,27.09,11.61,66.0,0.0,1880.4,1880.4,0.0,0.0,13.11,13.79,13.45,1.06,0.85,0.94,0.24,0.21,0.22,13.64,13.55,1.49,1.21,6544.0,1.81
project_testing-0004.osw,0,0.0,0.209,0.0,1.173,0.0,1.314,1.428,-0.138,0.0,0.0,0.0,0.0,3.698,0.0,0.0,0.0,0.653,0.0,0.79,5.672,0.0,0.464,0.0,26.238,0.0,30.932,-1.98,-0.146,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,8.41,0.0,10.442,-8.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.75,1072.41,33.1,0.0,0.0,0.0,0.0,86.46,24.75,3845.07,5555.48,198.27,0.0,45.32,0.0,0.0,0.0,0.0,0.0,0.0,11780.72,0.0,575.1,0.0,0.0,0.0,0.0,0.0,334.02,0.0,11780.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4771.04,0.0,0.0,0.0,0.0,4771.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,770.95,0.0,0.0,770.95,17322.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17322.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.049,4.8,0.158,0.0,0.0,0.0,0.0,0.305,0.082,12.671,19.763,0.816,0.0,0.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.276,0.0,0.0,0.0,0.0,0.0,1.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.127,72.127,0.0,42.539,42.539,24.354,5.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22793.0,37377.0,32633.0,0.0,3542.0,1200.0,4742.0,0.0,178.0,0.0,1247.0,2504.0,3780.0,1724.0,0.0,0.0,13401.0,784.0,3185.0,0.0,394.0,0.0,5615.0,23232.0,4822.0,0.0,0.0,46721.0,5146.0,7512.0,89.6,4.28,14.896,73.354,12.752,0.0,0.0,0.0,0.678,12562.3,5036.9,12562.3,18.61,53.627,0.0,18.0,37.0,0.0,0.0,0.0,1084.62,118.8,0.0,1203.42,595.72,0.0,595.72,4.76,104.4,109.16,0.0,0.0,0.0,1908.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1782.93,144.0,0.0,1926.93,777.65,0.0,777.65,46.54,144.0,190.54,0.0,0.0,0.0,2895.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1496.02,120.0,0.0,1616.02,367.95,0.0,367.95,57.57,132.0,189.57,0.0,0.0,0.0,2173.54,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,2179.0,2179.0,0.0,150.2,2179.0,22.79,37.38,23.29,9.34,66.0,0.0,1558.6,1558.6,779.4,150.4,13.8,9.63,11.45,1.72,3.15,0.86,0.21,1.43,0.1,13.55,10.0,3.59,10.7,815.0,12.56
-project_testing-0005.osw,0,2.061,-0.047,0.0,0.21,0.0,-1.656,18.632,-0.323,0.0,-0.141,0.0,0.0,0.0,0.0,0.0,0.0,-0.025,0.0,-1.285,5.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-924.0,0.0,96.81,26.67,0.0,1996.81,130.33,100.68,1559.1,471.77,0.0,0.0,0.0,0.0,0.0,1918.1,0.0,57.69,0.0,0.0,0.0,14.43,0.0,0.0,8940.95,0.0,0.0,8746.97,0.0,0.0,-6135.87,0.0,621.27,0.0,15076.82,260.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,486.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,486.22,10496.55,1069.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.37,16632.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.561,0.0,0.453,0.126,0.0,9.361,0.478,0.438,6.319,1.94,0.0,0.0,0.0,0.0,0.0,7.598,0.0,0.353,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,35.418,0.0,0.0,-38.98,0.0,2.554,0.0,1.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.996,75.976,0.0,27.681,66.661,0.0,3.301,6.014,0.0,0.0,1735.6,917.0,4747.3,15975.0,20653.0,0.0,0.0,0.0,3008.0,600.0,3608.0,5568.0,178.0,0.0,84.0,2126.0,4290.0,0.0,0.0,0.0,21169.0,3566.0,5358.0,6708.0,394.0,0.0,380.0,19914.0,0.0,0.0,0.0,43697.0,9509.0,6793.0,89.6,4.28,22.438,-0.792,0.0,13.247,0.0,6.89,1.237,5467.6,4375.8,5467.6,16.618,0.0,1.725,83.0,0.0,0.0,0.0,0.0,1699.5,118.8,-993.72,824.59,0.0,0.0,0.0,3.0,104.4,107.4,223.24,0.0,223.24,1155.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2793.7,144.0,-1633.51,1304.19,0.0,0.0,0.0,29.35,144.0,173.35,138.94,0.0,138.94,1616.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2344.14,450.0,-1370.64,1423.5,0.0,0.0,0.0,36.31,132.0,168.31,131.32,0.0,131.32,1723.13,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,409.3,0.0,1228.0,0.0,409.3,0.0,0.0,65.0,457.6,20.65,0.0,0.0,0.0,30.0,0.0,2026.8,2083.6,337.8,304.0,13.37,14.93,14.8,3.61,3.45,3.0,1.67,1.34,1.36,13.64,13.73,4.07,4.93,8706.0,5.47
-project_testing-0006.osw,0,0.0,0.012,3.248,-8.149,0.0,-0.073,3.865,-0.831,0.0,-0.08,0.0,0.0,22.999,0.0,0.0,0.0,0.768,0.0,-0.7,1.339,0.0,0.046,2.286,6.022,0.0,0.096,-3.888,-1.052,0.0,0.379,0.0,0.0,2.937,0.0,0.0,0.0,0.224,0.0,0.765,-1.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.88,83.79,0.0,0.0,0.0,65.21,0.0,0.27,0.0,0.0,0.0,19.93,0.0,9.86,0.0,0.0,0.0,235.33,0.0,0.0,814.55,0.0,165.38,0.0,0.0,11.9,0.0,0.0,178.0,0.0,814.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,1177.73,0.0,0.0,0.0,1480.62,0.0,0.0,2658.35,3472.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3472.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,2.646,4.771,0.0,0.0,0.0,1.94,0.0,0.011,0.0,0.0,0.0,0.531,0.0,0.399,0.0,0.0,0.0,6.519,0.0,0.0,0.0,4.371,0.0,0.0,0.736,0.0,0.0,5.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.995,0.0,0.0,0.0,10.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.266,45.266,0.0,27.218,27.218,0.0,18.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43841.0,0.0,38652.0,0.0,-311.0,800.0,489.0,0.0,88.0,8993.0,1044.0,285.0,4520.0,17669.0,0.0,0.0,35650.0,1807.0,1245.0,0.0,97.0,15854.0,3607.0,1078.0,15136.0,0.0,0.0,38652.0,2089.0,791.0,82.04,45.68,22.258,5.666,0.0,0.0,0.0,0.0,1.618,4658.2,4658.2,1154.0,33.142,38.484,0.0,4.0,67.0,0.0,0.0,0.0,662.09,105.6,0.0,767.69,0.0,0.0,0.0,16.42,140.4,156.82,0.0,0.0,0.0,924.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1924.49,144.0,0.0,2068.49,0.0,0.0,0.0,230.79,144.0,374.79,0.0,0.0,0.0,2443.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,957.23,120.0,0.0,1077.23,0.0,0.0,0.0,198.52,132.0,330.52,0.0,0.0,0.0,1407.75,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,1625.09,0.0,0.0,6348.0,0.0,6348.0,6348.0,218.1,256.4,6348.0,43.84,0.0,34.09,4.56,50.0,0.0,475.1,475.1,237.6,42.8,15.44,14.96,15.82,3.75,0.96,1.8,0.57,0.51,0.53,15.27,14.55,4.41,1.03,5751.0,4.66
-project_testing-0007.osw,0,0.0,0.223,0.0,-0.199,0.0,0.008,4.38,-3.356,0.0,0.363,0.0,0.0,40.884,0.0,0.0,0.0,1.923,0.0,0.0,0.0,0.0,0.007,0.0,-0.26,0.0,0.103,-6.194,-4.206,0.0,1.356,0.0,0.0,15.311,0.0,0.0,0.0,0.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-366.62,0.0,0.0,0.0,0.0,241.03,124.11,0.0,0.0,73.6,0.0,6.14,0.0,0.0,188.99,0.0,0.0,0.0,0.0,0.0,0.0,34.96,0.0,0.0,379.2,91.51,93.6,0.0,0.0,89.83,-371.47,0.0,173.52,0.0,750.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1493.92,0.0,0.0,0.0,0.0,0.0,1114.72,0.0,0.0,0.0,0.0,1114.72,1865.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,2.074,0.0,0.0,0.0,0.0,12.168,2.499,0.0,0.0,2.189,0.0,0.123,0.0,0.0,3.746,0.0,0.0,0.0,0.0,0.0,0.0,0.968,0.0,0.0,2.505,2.474,0.0,0.0,5.553,-43.045,0.0,5.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,0.0,0.0,0.0,0.0,2.685,45.73,0.0,-3.585,39.46,0.0,0.0,6.27,0.0,0.0,0.0,0.0,0.0,0.0,16077.0,0.0,20460.0,0.0,-312.0,1000.0,688.0,0.0,88.0,0.0,0.0,801.0,4750.0,13456.0,0.0,0.0,19315.0,220.0,0.0,0.0,97.0,0.0,0.0,3465.0,13902.0,0.0,0.0,20461.0,2997.0,0.0,82.04,45.68,43.743,6.906,0.0,0.0,0.0,0.0,0.0,3932.3,2912.8,3902.7,21.104,22.977,5.381,1772.0,55.0,0.0,0.0,0.0,959.4,105.6,-990.92,74.08,0.0,0.0,0.0,0.0,0.0,0.0,191.65,0.0,191.65,265.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2788.7,144.0,-2820.22,112.48,0.0,0.0,0.0,0.0,0.0,0.0,184.48,0.0,184.48,296.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1387.09,390.0,-1423.86,353.23,0.0,0.0,0.0,0.0,0.0,0.0,136.89,0.0,136.89,490.12,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,92.6,0.0,2115.0,16.08,0.0,10.23,10.23,0.0,0.0,1535.6,1535.6,0.0,0.0,11.11,7.08,9.92,2.76,3.31,2.53,0.55,0.36,0.39,10.91,7.36,2.87,3.73,6344.0,3.93
-project_testing-0008.osw,0,-0.001,-0.075,0.0,-0.002,0.0,-0.063,7.436,-0.009,0.473,-1.022,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,0.0,-0.074,0.186,-0.003,0.252,0.0,-0.005,0.0,0.19,-3.057,-0.025,-0.283,4.02,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.196,-0.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.76,12.08,7.03,5.4,1.79,175.45,171.85,18.0,312.37,66.51,0.0,2.65,0.0,0.0,11.82,142.2,87.78,11.15,14.81,0.0,93.05,23.3,0.0,0.0,1830.44,0.0,0.0,270.58,234.39,191.95,-406.92,77.07,245.63,0.0,2237.36,68.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,21.75,0.0,9.71,0.0,0.0,0.0,2.45,0.0,0.0,0.0,0.0,33.91,2481.36,324.32,0.0,0.0,0.0,0.0,292.69,0.0,0.0,0.0,0.0,617.01,2888.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.034,0.186,0.137,0.108,0.03,2.88,2.849,0.287,5.053,1.092,0.0,0.036,0.0,0.0,0.159,2.069,1.495,0.3,0.207,0.0,1.467,0.373,0.0,0.0,0.0,0.0,4.363,5.362,4.391,-11.86,1.341,4.033,0.0,1.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.066,0.0,0.0,0.0,0.017,0.0,0.0,0.0,0.0,1.824,0.0,0.0,0.0,0.0,1.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.124,42.984,0.0,27.424,39.284,0.0,0.23,3.47,0.0,0.0,412.6,600.5,590.3,4985.4,2556.0,0.0,2732.0,0.0,637.0,600.0,1237.0,0.0,112.0,0.0,0.0,449.0,4290.0,0.0,0.0,0.0,5322.0,110.0,361.0,0.0,210.0,0.0,0.0,2004.0,0.0,0.0,0.0,2732.0,347.0,171.0,87.98,17.6,9.701,1.728,0.0,3.626,0.0,3.819,1.071,3619.5,3580.5,3256.8,7.538,4.687,0.247,240.0,234.0,0.0,0.0,0.0,1082.21,105.6,-326.72,861.08,0.0,0.0,0.0,0.22,118.8,119.02,147.75,0.0,147.75,1127.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2304.06,144.0,-695.61,1752.45,0.0,0.0,0.0,3.28,144.0,147.28,128.88,0.0,128.88,2028.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1381.54,210.0,-417.09,1174.45,0.0,0.0,0.0,2.53,132.0,134.53,75.77,0.0,75.77,1384.75,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.4,0.0,0.0,2.56,0.0,2.46,0.27,30.0,0.0,107.0,107.0,0.0,9.6,10.69,10.96,10.67,2.54,2.27,2.19,0.88,0.58,0.66,10.0,10.55,3.28,3.01,2817.0,3.62
-project_testing-0009.osw,0,18.144,0.402,20.7,0.0,0.0,0.819,16.171,-0.297,4.491,0.081,0.0,0.0,0.0,0.0,0.0,5.31,1.015,0.0,0.584,8.202,11.185,0.147,3.493,0.0,0.0,6.007,-5.562,-0.293,-1.817,0.176,0.0,0.0,0.0,0.0,0.0,-1.376,2.568,0.0,1.656,-2.643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.19,562.55,2526.35,0.0,66.39,279.22,109.43,0.0,11.46,0.0,0.0,292.63,0.0,81.2,21.28,35.75,0.0,352.54,2.85,0.0,0.0,4969.53,0.0,446.25,188.1,0.0,0.0,-192.48,9.96,162.87,0.0,5162.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,948.73,0.0,655.14,0.0,6.96,0.0,2504.15,0.0,0.0,4114.98,24995.88,0.0,0.0,0.0,0.0,0.0,0.0,14932.42,0.0,0.0,978.95,15911.38,25188.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.242,8.102,36.094,0.0,1.179,5.053,1.94,0.0,0.244,0.0,0.0,6.249,0.0,1.495,0.409,0.63,0.0,6.307,0.056,0.0,0.0,0.0,7.392,3.443,0.0,0.0,-3.963,0.188,2.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.441,0.0,4.448,0.0,0.047,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.984,0.0,0.0,5.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,195.375,199.337,0.0,77.946,81.909,0.0,27.936,89.493,0.0,0.0,928.2,2568.1,4650.7,79993.1,89363.0,47419.0,97886.0,9057.0,5254.0,600.0,14911.0,23145.0,248.0,21361.0,0.0,3938.0,4290.0,0.0,0.0,0.0,57733.0,1464.0,3286.0,15749.0,297.0,13325.0,0.0,12153.0,0.0,0.0,7756.0,55942.0,4252.0,2411.0,95.0,32.9,75.415,13.784,0.0,37.793,0.0,10.989,0.0,10535.7,10535.7,6224.6,53.98,34.93,0.0,662.0,0.0,0.0,0.0,0.0,2136.45,96.0,-103.36,2129.09,0.0,0.0,0.0,26.26,108.0,134.26,3810.28,0.0,3810.28,6073.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2997.76,144.0,-145.03,2996.73,0.0,0.0,0.0,289.52,144.0,433.52,2867.3,0.0,2867.3,6297.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2880.6,150.0,-139.36,2891.24,0.0,0.0,0.0,307.3,132.0,439.3,1953.99,0.0,1953.99,5284.53,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,543.36,1698.0,0.0,1698.0,0.0,1698.0,1698.0,0.0,0.0,1898.4,89.36,47.42,89.36,8.52,0.0,172.0,1376.0,1611.8,0.0,132.6,8.06,11.59,11.29,6.68,3.64,3.03,0.9,0.92,0.72,14.82,5.64,9.58,5.33,5127.0,10.54
-project_testing-0010.osw,0,-0.011,0.053,0.0,-0.013,0.0,-0.155,26.773,0.004,4.485,-0.995,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,0.0,0.003,0.517,0.0,0.003,0.0,0.628,-8.702,0.068,-2.392,5.336,0.0,0.0,0.0,0.0,0.0,0.0,3.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.39,10.8,0.0,888.24,372.31,42.79,279.22,123.49,0.0,0.0,0.0,0.0,0.0,858.23,82.7,17.52,35.57,0.0,450.47,204.65,0.0,0.0,4951.99,0.0,314.73,882.79,0.0,406.01,-206.06,6.45,153.82,0.0,5158.04,14.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,408.79,0.0,1766.15,0.0,522.13,2697.07,8261.48,612.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,612.42,8467.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.204,0.0,13.595,5.255,0.74,5.053,2.189,0.0,0.0,0.0,0.0,0.0,19.56,1.495,0.361,0.627,0.0,7.998,3.71,0.0,0.0,0.0,5.213,16.138,0.0,8.777,-4.177,0.121,2.726,0.0,0.262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,11.99,0.0,3.545,3.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.864,116.041,0.0,90.11,94.286,0.0,18.31,3.444,0.0,0.0,779.9,1548.8,3129.0,38085.1,9909.0,0.0,3396.0,0.0,3725.0,1200.0,4925.0,0.0,248.0,0.0,0.0,883.0,4980.0,0.0,0.0,0.0,6654.0,543.0,0.0,0.0,297.0,0.0,0.0,1808.0,0.0,0.0,0.0,3395.0,1290.0,0.0,95.0,32.9,32.422,-0.12,0.0,19.072,0.0,11.299,0.506,9194.3,6502.8,9194.3,21.029,4.4,0.0,2073.0,0.0,0.0,0.0,0.0,2459.3,96.0,-108.94,2446.36,0.0,0.0,0.0,17.21,108.0,125.21,146.65,0.0,146.65,2718.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3450.77,144.0,-152.86,3441.91,0.0,0.0,0.0,189.76,144.0,333.76,110.36,0.0,110.36,3886.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3315.91,150.0,-146.88,3319.03,0.0,0.0,0.0,201.41,132.0,333.41,75.21,0.0,75.21,3727.65,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,121.0,0.0,0.0,9.91,0.0,1.7,1.7,66.0,0.0,613.8,613.8,0.0,0.0,10.98,11.65,10.41,4.96,5.94,5.66,1.45,1.16,1.21,8.91,11.45,7.02,7.81,1113.0,9.19
-project_testing-0011.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.214,0.0,137.733,-15.938,1.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.969,0.0,7.784,-4.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,299.8,0.0,0.0,133.32,0.0,164.91,0.0,0.0,3620.22,134.89,0.0,17.79,0.0,0.0,0.0,0.0,0.0,0.0,4443.23,279.81,280.81,0.0,0.0,0.0,-678.19,0.0,189.89,0.0,5121.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24201.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24879.79,0.0,0.0,0.0,0.0,0.0,19758.37,0.0,0.0,0.0,0.0,19758.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,4.982,0.0,0.0,2.189,0.0,2.46,0.0,0.0,53.987,2.173,0.0,0.368,0.0,0.0,0.0,0.0,0.0,0.0,4.427,4.371,0.0,0.0,0.0,-19.767,0.0,3.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,157.1,176.866,0.0,58.308,78.074,0.0,0.0,0.0,98.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86405.0,0.0,14092.0,600.0,14692.0,0.0,0.0,0.0,0.0,9939.0,4290.0,0.0,0.0,0.0,18846.0,308.0,4310.0,0.0,0.0,0.0,0.0,80418.0,0.0,0.0,0.0,86405.0,1653.0,4334.0,87.98,17.6,0.114,133.897,0.0,0.0,0.0,0.0,1.586,12384.1,2503.1,12384.1,5.131,92.45,0.0,0.0,369.0,0.0,0.0,0.0,2150.85,105.6,-544.54,1711.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2976.44,1264.54,0.0,1264.54,0.0,0.0,0.0,0.0,0.0,0.0,4579.24,144.0,-1159.36,3563.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5045.77,1481.88,0.0,1481.88,0.0,0.0,0.0,0.0,0.0,0.0,2745.76,270.0,-695.16,2320.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3802.48,1481.88,0.0,1481.88,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,6348.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.84,34.56,50.0,0.0,475.1,475.1,0.0,71.3,11.97,11.54,13.44,1.79,9.56,2.35,0.54,0.43,0.45,15.73,14.64,2.32,11.93,569.0,12.38
-project_testing-0012.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.024,0.535,0.0,-0.036,0.0,2.002,-9.521,-0.4,0.0,5.236,0.0,0.0,0.0,0.0,0.0,0.0,2.215,0.0,2.672,-2.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-59.59,0.0,0.0,0.0,0.0,0.0,148.78,0.0,0.0,123.49,0.0,2.97,0.0,0.0,24.4,0.0,0.0,24.57,0.0,0.0,0.0,53.18,0.0,0.0,-1625.92,0.0,0.0,0.0,0.0,0.0,-2266.61,0.0,322.89,0.0,640.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,522.67,1598.74,0.0,0.0,0.0,2121.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,495.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2762.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,1.453,0.0,0.0,0.0,0.0,0.0,2.715,0.0,0.0,2.189,0.0,0.061,0.0,0.0,0.504,0.0,0.0,0.417,0.0,0.0,0.0,0.962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-45.942,0.0,5.723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.668,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-21.086,24.855,0.0,-31.915,14.026,10.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14163.0,0.0,3987.0,600.0,4587.0,0.0,443.0,0.0,0.0,2989.0,4290.0,0.0,0.0,0.0,12704.0,978.0,4004.0,0.0,530.0,0.0,0.0,7768.0,0.0,0.0,0.0,14163.0,2724.0,3141.0,95.0,32.9,0.484,2.885,0.0,0.0,0.0,0.0,2.741,1821.7,1703.9,1247.2,5.512,9.094,255.809,0.0,0.0,0.0,0.0,0.0,365.14,96.0,-645.74,-184.6,303.84,0.0,303.84,0.0,0.0,0.0,0.0,0.0,0.0,119.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.34,144.0,-792.95,-136.6,378.74,0.0,378.74,0.0,0.0,0.0,0.0,0.0,0.0,242.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,492.32,450.0,-819.69,122.63,163.6,0.0,163.6,0.0,0.0,0.0,0.0,0.0,0.0,286.23,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,91.9,0.0,0.0,0.0,0.0,11.33,2.83,30.0,0.0,1276.0,1276.0,0.0,100.8,9.89,10.62,11.25,1.04,0.88,0.91,0.28,0.28,0.25,10.55,11.45,1.56,1.11,2195.0,1.82
+project_testing-0005.osw,0,2.061,-0.047,0.0,0.21,0.0,-1.656,18.632,-0.323,0.0,-0.141,0.0,0.0,0.0,0.0,0.0,0.0,-0.025,0.0,-1.285,5.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-924.0,0.0,96.81,26.67,0.0,1996.81,130.33,100.68,1559.1,471.77,0.0,0.0,0.0,0.0,0.0,1918.1,0.0,57.69,0.0,0.0,0.0,14.43,0.0,0.0,8940.95,0.0,0.0,8746.97,0.0,0.0,-6135.87,0.0,621.27,0.0,15076.82,260.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,486.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,486.22,10496.55,1069.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.37,16632.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.561,0.0,0.453,0.126,0.0,9.361,0.478,0.438,6.319,1.94,0.0,0.0,0.0,0.0,0.0,7.598,0.0,0.353,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,35.418,0.0,0.0,-38.98,0.0,2.554,0.0,1.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.996,75.976,0.0,27.681,66.661,0.0,3.301,6.014,0.0,0.0,1735.6,917.0,4747.3,15975.0,20653.0,0.0,0.0,0.0,3008.0,600.0,3608.0,5568.0,178.0,0.0,84.0,2126.0,4290.0,0.0,0.0,0.0,21169.0,3566.0,5358.0,6708.0,394.0,0.0,380.0,19914.0,0.0,0.0,0.0,43697.0,9509.0,6793.0,89.6,4.28,22.438,-0.792,0.0,13.247,0.0,6.89,1.237,5467.6,4375.8,5467.6,16.618,0.0,1.725,83.0,0.0,0.0,0.0,0.0,1699.5,448.8,-993.72,1154.59,0.0,0.0,0.0,3.0,104.4,107.4,223.24,0.0,223.24,1485.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2793.7,144.0,-1633.51,1304.19,0.0,0.0,0.0,29.35,144.0,173.35,138.94,0.0,138.94,1616.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2344.14,450.0,-1370.64,1423.5,0.0,0.0,0.0,36.31,132.0,168.31,131.32,0.0,131.32,1723.13,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,409.3,0.0,1228.0,0.0,409.3,0.0,0.0,65.0,457.6,20.65,0.0,0.0,0.0,30.0,0.0,2026.8,2083.6,337.8,304.0,13.37,14.93,14.8,3.61,3.45,3.0,1.67,1.34,1.36,13.64,13.73,4.07,4.93,8706.0,5.47
+project_testing-0006.osw,0,0.0,0.012,3.248,-8.149,0.0,-0.073,3.865,-0.831,0.0,-0.08,0.0,0.0,22.999,0.0,0.0,0.0,0.768,0.0,-0.7,1.339,0.0,0.046,2.286,6.022,0.0,0.096,-3.888,-1.052,0.0,0.379,0.0,0.0,2.937,0.0,0.0,0.0,0.224,0.0,0.765,-1.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.88,83.79,0.0,0.0,0.0,65.21,0.0,0.27,0.0,0.0,0.0,19.93,0.0,9.86,0.0,0.0,0.0,235.33,0.0,0.0,814.55,0.0,165.38,0.0,0.0,11.9,0.0,0.0,178.0,0.0,814.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,1177.73,0.0,0.0,0.0,1480.62,0.0,0.0,2658.35,3472.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3472.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,2.646,4.771,0.0,0.0,0.0,1.94,0.0,0.011,0.0,0.0,0.0,0.531,0.0,0.399,0.0,0.0,0.0,6.519,0.0,0.0,0.0,4.371,0.0,0.0,0.736,0.0,0.0,5.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.995,0.0,0.0,0.0,10.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.266,45.266,0.0,27.218,27.218,0.0,18.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43841.0,0.0,38652.0,0.0,-311.0,800.0,489.0,0.0,88.0,8993.0,1044.0,285.0,4520.0,17669.0,0.0,0.0,35650.0,1807.0,1245.0,0.0,97.0,15854.0,3607.0,1078.0,15136.0,0.0,0.0,38652.0,2089.0,791.0,82.04,45.68,22.258,5.666,0.0,0.0,0.0,0.0,1.618,4658.2,4658.2,1154.0,33.142,38.484,0.0,4.0,67.0,0.0,0.0,0.0,662.09,105.6,0.0,767.69,0.0,0.0,0.0,16.42,140.4,156.82,0.0,0.0,0.0,924.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,929.0,108.0,0.0,1037.0,0.0,0.0,0.0,21.3,97.2,118.5,0.0,0.0,0.0,1155.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,957.23,120.0,0.0,1077.23,0.0,0.0,0.0,198.52,132.0,330.52,0.0,0.0,0.0,1407.75,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,1625.09,0.0,0.0,6348.0,0.0,6348.0,6348.0,218.1,256.4,6348.0,43.84,0.0,34.09,4.56,50.0,0.0,475.1,475.1,237.6,42.8,15.44,14.96,15.82,3.75,0.96,1.8,0.57,0.51,0.53,15.27,14.55,4.41,1.03,5751.0,4.66
+project_testing-0007.osw,0,0.0,0.223,0.0,-0.199,0.0,0.008,4.38,-3.356,0.0,0.363,0.0,0.0,40.884,0.0,0.0,0.0,1.923,0.0,0.0,0.0,0.0,0.007,0.0,-0.26,0.0,0.103,-6.194,-4.206,0.0,1.356,0.0,0.0,15.311,0.0,0.0,0.0,0.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-366.62,0.0,0.0,0.0,0.0,241.03,124.11,0.0,0.0,73.6,0.0,6.14,0.0,0.0,188.99,0.0,0.0,0.0,0.0,0.0,0.0,34.96,0.0,0.0,379.2,91.51,93.6,0.0,0.0,89.83,-371.47,0.0,173.52,0.0,750.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1493.92,0.0,0.0,0.0,0.0,0.0,1114.72,0.0,0.0,0.0,0.0,1114.72,1865.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,2.074,0.0,0.0,0.0,0.0,12.168,2.499,0.0,0.0,2.189,0.0,0.123,0.0,0.0,3.746,0.0,0.0,0.0,0.0,0.0,0.0,0.968,0.0,0.0,2.505,2.474,0.0,0.0,5.553,-43.045,0.0,5.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,0.0,0.0,0.0,0.0,2.685,45.73,0.0,-3.585,39.46,0.0,0.0,6.27,0.0,0.0,0.0,0.0,0.0,0.0,16077.0,0.0,20460.0,0.0,-312.0,1000.0,688.0,0.0,88.0,0.0,0.0,801.0,4750.0,13456.0,0.0,0.0,19315.0,220.0,0.0,0.0,97.0,0.0,0.0,3465.0,13902.0,0.0,0.0,20461.0,2997.0,0.0,82.04,45.68,43.743,6.906,0.0,0.0,0.0,0.0,0.0,3932.3,2912.8,3902.7,21.104,22.977,5.381,1772.0,55.0,0.0,0.0,0.0,959.4,195.6,-1513.17,-358.16,0.0,0.0,0.0,0.0,0.0,0.0,191.65,0.0,191.65,-166.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1394.68,378.0,-1513.17,259.51,0.0,0.0,0.0,0.0,0.0,0.0,246.4,0.0,246.4,505.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1387.09,390.0,-1423.86,353.23,0.0,0.0,0.0,0.0,0.0,0.0,136.89,0.0,136.89,490.12,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,92.6,0.0,2115.0,16.08,0.0,10.23,10.23,0.0,0.0,1535.6,1535.6,0.0,0.0,11.11,7.08,9.92,2.76,3.31,2.53,0.55,0.36,0.39,10.91,7.36,2.87,3.73,6344.0,3.93
+project_testing-0008.osw,0,-0.001,-0.075,0.0,-0.002,0.0,-0.063,7.436,-0.009,0.473,-1.022,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,0.0,-0.074,0.186,-0.003,0.252,0.0,-0.005,0.0,0.19,-3.057,-0.025,-0.283,4.02,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.196,-0.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.76,12.08,7.03,5.4,1.79,175.45,171.85,18.0,312.37,66.51,0.0,2.65,0.0,0.0,11.82,142.2,87.78,11.15,14.81,0.0,93.05,23.3,0.0,0.0,1830.44,0.0,0.0,270.58,234.39,191.95,-406.92,77.07,245.63,0.0,2237.36,68.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,21.75,0.0,9.71,0.0,0.0,0.0,2.45,0.0,0.0,0.0,0.0,33.91,2481.36,324.32,0.0,0.0,0.0,0.0,292.69,0.0,0.0,0.0,0.0,617.01,2888.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.034,0.186,0.137,0.108,0.03,2.88,2.849,0.287,5.053,1.092,0.0,0.036,0.0,0.0,0.159,2.069,1.495,0.3,0.207,0.0,1.467,0.373,0.0,0.0,0.0,0.0,4.363,5.362,4.391,-11.86,1.341,4.033,0.0,1.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.066,0.0,0.0,0.0,0.017,0.0,0.0,0.0,0.0,1.824,0.0,0.0,0.0,0.0,1.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.124,42.984,0.0,27.424,39.284,0.0,0.23,3.47,0.0,0.0,412.6,600.5,590.3,4985.4,2556.0,0.0,2732.0,0.0,637.0,600.0,1237.0,0.0,112.0,0.0,0.0,449.0,4290.0,0.0,0.0,0.0,5322.0,110.0,361.0,0.0,210.0,0.0,0.0,2004.0,0.0,0.0,0.0,2732.0,347.0,171.0,87.98,17.6,9.701,1.728,0.0,3.626,0.0,3.819,1.071,3619.5,3580.5,3256.8,7.538,4.687,0.247,240.0,234.0,0.0,0.0,0.0,1082.21,195.6,-326.72,951.08,0.0,0.0,0.0,0.22,118.8,119.02,147.75,0.0,147.75,1217.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2304.06,144.0,-695.61,1752.45,0.0,0.0,0.0,3.28,144.0,147.28,128.88,0.0,128.88,2028.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1381.54,210.0,-417.09,1174.45,0.0,0.0,0.0,2.53,132.0,134.53,75.77,0.0,75.77,1384.75,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.4,0.0,0.0,2.56,0.0,2.46,0.27,30.0,0.0,107.0,107.0,0.0,9.6,10.69,10.96,10.67,2.54,2.27,2.19,0.88,0.58,0.66,10.0,10.55,3.28,3.01,2817.0,3.62
+project_testing-0009.osw,0,18.144,0.402,20.7,0.0,0.0,0.819,16.171,-0.297,4.491,0.081,0.0,0.0,0.0,0.0,0.0,5.31,1.015,0.0,0.584,8.202,11.185,0.147,3.493,0.0,0.0,6.007,-5.562,-0.293,-1.817,0.176,0.0,0.0,0.0,0.0,0.0,-1.376,2.568,0.0,1.656,-2.643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.19,562.55,2526.35,0.0,66.39,279.22,109.43,0.0,11.46,0.0,0.0,292.63,0.0,81.2,21.28,35.75,0.0,352.54,2.85,0.0,0.0,4969.53,0.0,446.25,188.1,0.0,0.0,-192.48,9.96,162.87,0.0,5162.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,948.73,0.0,655.14,0.0,6.96,0.0,2504.15,0.0,0.0,4114.98,24995.88,0.0,0.0,0.0,0.0,0.0,0.0,14932.42,0.0,0.0,978.95,15911.38,25188.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.242,8.102,36.094,0.0,1.179,5.053,1.94,0.0,0.244,0.0,0.0,6.249,0.0,1.495,0.409,0.63,0.0,6.307,0.056,0.0,0.0,0.0,7.392,3.443,0.0,0.0,-3.963,0.188,2.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.441,0.0,4.448,0.0,0.047,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.984,0.0,0.0,5.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,195.375,199.337,0.0,77.946,81.909,0.0,27.936,89.493,0.0,0.0,928.2,2568.1,4650.7,79993.1,89363.0,47419.0,97886.0,9057.0,5254.0,600.0,14911.0,23145.0,248.0,21361.0,0.0,3938.0,4290.0,0.0,0.0,0.0,57733.0,1464.0,3286.0,15749.0,297.0,13325.0,0.0,12153.0,0.0,0.0,7756.0,55942.0,4252.0,2411.0,95.0,32.9,75.415,13.784,0.0,37.793,0.0,10.989,0.0,10535.7,10535.7,6224.6,53.98,34.93,0.0,662.0,0.0,0.0,0.0,0.0,2136.45,126.0,-103.36,2159.09,0.0,0.0,0.0,26.26,108.0,134.26,3810.28,0.0,3810.28,6103.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2997.76,144.0,-145.03,2996.73,0.0,0.0,0.0,289.52,144.0,433.52,2867.3,0.0,2867.3,6297.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2880.6,150.0,-139.36,2891.24,0.0,0.0,0.0,307.3,132.0,439.3,1953.99,0.0,1953.99,5284.53,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,543.36,1698.0,0.0,1698.0,0.0,1698.0,1698.0,0.0,0.0,1898.4,89.36,47.42,89.36,8.52,0.0,172.0,1376.0,1611.8,0.0,132.6,8.06,11.59,11.29,6.68,3.64,3.03,0.9,0.92,0.72,14.82,5.64,9.58,5.33,5127.0,10.54
+project_testing-0010.osw,0,-0.011,0.053,0.0,-0.013,0.0,-0.155,26.773,0.004,4.485,-0.995,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,0.0,0.003,0.517,0.0,0.003,0.0,0.628,-8.702,0.068,-2.392,5.336,0.0,0.0,0.0,0.0,0.0,0.0,3.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.39,10.8,0.0,888.24,372.31,42.79,279.22,123.49,0.0,0.0,0.0,0.0,0.0,858.23,82.7,17.52,35.57,0.0,450.47,204.65,0.0,0.0,4951.99,0.0,314.73,882.79,0.0,406.01,-206.06,6.45,153.82,0.0,5158.04,14.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,408.79,0.0,1766.15,0.0,522.13,2697.07,8261.48,612.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,612.42,8467.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.204,0.0,13.595,5.255,0.74,5.053,2.189,0.0,0.0,0.0,0.0,0.0,19.56,1.495,0.361,0.627,0.0,7.998,3.71,0.0,0.0,0.0,5.213,16.138,0.0,8.777,-4.177,0.121,2.726,0.0,0.262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,11.99,0.0,3.545,3.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.864,116.041,0.0,90.11,94.286,0.0,18.31,3.444,0.0,0.0,779.9,1548.8,3129.0,38085.1,9909.0,0.0,3396.0,0.0,3725.0,1200.0,4925.0,0.0,248.0,0.0,0.0,883.0,4980.0,0.0,0.0,0.0,6654.0,543.0,0.0,0.0,297.0,0.0,0.0,1808.0,0.0,0.0,0.0,3395.0,1290.0,0.0,95.0,32.9,32.422,-0.12,0.0,19.072,0.0,11.299,0.506,9194.3,6502.8,9194.3,21.029,4.4,0.0,2073.0,0.0,0.0,0.0,0.0,2459.3,126.0,-108.94,2476.36,0.0,0.0,0.0,17.21,108.0,125.21,146.65,0.0,146.65,2748.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3450.77,144.0,-152.86,3441.91,0.0,0.0,0.0,189.76,144.0,333.76,110.36,0.0,110.36,3886.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3315.91,150.0,-146.88,3319.03,0.0,0.0,0.0,201.41,132.0,333.41,75.21,0.0,75.21,3727.65,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,121.0,0.0,0.0,9.91,0.0,1.7,1.7,66.0,0.0,613.8,613.8,0.0,0.0,10.98,11.65,10.41,4.96,5.94,5.66,1.45,1.16,1.21,8.91,11.45,7.02,7.81,1113.0,9.19
+project_testing-0011.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.214,0.0,137.733,-15.938,1.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.969,0.0,7.784,-4.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,299.8,0.0,0.0,133.32,0.0,164.91,0.0,0.0,3620.22,134.89,0.0,17.79,0.0,0.0,0.0,0.0,0.0,0.0,4443.23,279.81,280.81,0.0,0.0,0.0,-678.19,0.0,189.89,0.0,5121.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24201.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24879.79,0.0,0.0,0.0,0.0,0.0,19758.37,0.0,0.0,0.0,0.0,19758.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,4.982,0.0,0.0,2.189,0.0,2.46,0.0,0.0,53.987,2.173,0.0,0.368,0.0,0.0,0.0,0.0,0.0,0.0,4.427,4.371,0.0,0.0,0.0,-19.767,0.0,3.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,157.1,176.866,0.0,58.308,78.074,0.0,0.0,0.0,98.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86405.0,0.0,14092.0,600.0,14692.0,0.0,0.0,0.0,0.0,9939.0,4290.0,0.0,0.0,0.0,18846.0,308.0,4310.0,0.0,0.0,0.0,0.0,80418.0,0.0,0.0,0.0,86405.0,1653.0,4334.0,87.98,17.6,0.114,133.897,0.0,0.0,0.0,0.0,1.586,12384.1,2503.1,12384.1,5.131,92.45,0.0,0.0,369.0,0.0,0.0,0.0,2150.85,255.6,-544.54,1861.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3126.44,1264.54,0.0,1264.54,0.0,0.0,0.0,0.0,0.0,0.0,4579.24,144.0,-1159.36,3563.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5045.77,1481.88,0.0,1481.88,0.0,0.0,0.0,0.0,0.0,0.0,2745.76,270.0,-695.16,2320.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3802.48,1481.88,0.0,1481.88,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,6348.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.84,34.56,50.0,0.0,475.1,475.1,0.0,71.3,11.97,11.54,13.44,1.79,9.56,2.35,0.54,0.43,0.45,15.73,14.64,2.32,11.93,569.0,12.38
+project_testing-0012.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.024,0.535,0.0,-0.036,0.0,2.002,-9.521,-0.4,0.0,5.236,0.0,0.0,0.0,0.0,0.0,0.0,2.215,0.0,2.672,-2.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-59.59,0.0,0.0,0.0,0.0,0.0,148.78,0.0,0.0,123.49,0.0,2.97,0.0,0.0,24.4,0.0,0.0,24.57,0.0,0.0,0.0,53.18,0.0,0.0,-1625.92,0.0,0.0,0.0,0.0,0.0,-2266.61,0.0,322.89,0.0,640.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,522.67,1598.74,0.0,0.0,0.0,2121.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,495.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2762.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,1.453,0.0,0.0,0.0,0.0,0.0,2.715,0.0,0.0,2.189,0.0,0.061,0.0,0.0,0.504,0.0,0.0,0.417,0.0,0.0,0.0,0.962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-45.942,0.0,5.723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.668,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-21.086,24.855,0.0,-31.915,14.026,10.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14163.0,0.0,3987.0,600.0,4587.0,0.0,443.0,0.0,0.0,2989.0,4290.0,0.0,0.0,0.0,12704.0,978.0,4004.0,0.0,530.0,0.0,0.0,7768.0,0.0,0.0,0.0,14163.0,2724.0,3141.0,95.0,32.9,0.484,2.885,0.0,0.0,0.0,0.0,2.741,1821.7,1703.9,1247.2,5.512,9.094,255.809,0.0,0.0,0.0,0.0,0.0,365.14,426.0,-1197.6,-406.46,303.84,0.0,303.84,0.0,0.0,0.0,0.0,0.0,0.0,-102.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.34,144.0,-792.95,-136.6,378.74,0.0,378.74,0.0,0.0,0.0,0.0,0.0,0.0,242.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,492.32,450.0,-819.69,122.63,163.6,0.0,163.6,0.0,0.0,0.0,0.0,0.0,0.0,286.23,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,91.9,0.0,0.0,0.0,0.0,11.33,2.83,30.0,0.0,1276.0,1276.0,0.0,100.8,9.89,10.62,11.25,1.04,0.88,0.91,0.28,0.28,0.25,10.55,11.45,1.56,1.11,2195.0,1.82
project_testing-0013.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.002,0.382,0.0,0.242,0.0,1.681,-2.36,-0.027,0.0,1.633,0.0,0.0,0.0,0.0,0.0,0.0,1.961,0.0,2.198,-2.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,109.43,0.0,3.64,0.0,0.0,0.0,0.0,0.0,24.32,0.0,0.0,0.0,23.78,0.0,0.0,403.56,0.0,0.0,0.0,0.0,14.86,0.0,0.0,227.53,0.0,403.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,638.59,708.01,0.0,0.0,0.0,0.0,0.0,1346.6,1750.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1750.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,1.94,0.0,0.077,0.0,0.0,0.0,0.0,0.0,0.419,0.0,0.0,0.0,0.43,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,4.033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.335,4.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.363,16.363,0.0,7.22,7.22,0.0,9.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13157.0,0.0,2723.0,1200.0,3923.0,0.0,443.0,0.0,272.0,2041.0,4980.0,0.0,0.0,0.0,12685.0,1008.0,3940.0,0.0,530.0,0.0,505.0,5895.0,0.0,0.0,0.0,13157.0,2928.0,3299.0,95.0,32.9,0.0,3.755,0.0,0.0,0.0,0.0,3.075,315.3,311.7,279.7,0.0,9.923,0.0,0.0,0.0,0.0,0.0,0.0,188.33,96.0,0.0,284.33,0.0,0.0,0.0,8.59,108.0,116.59,0.0,0.0,0.0,400.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264.26,144.0,0.0,408.26,0.0,0.0,0.0,94.75,144.0,238.75,0.0,0.0,0.0,647.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,253.93,120.0,0.0,373.93,0.0,0.0,0.0,100.56,132.0,232.56,0.0,0.0,0.0,606.49,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,854.0,0.0,854.0,854.0,41.0,94.0,0.0,0.0,0.0,13.16,0.0,50.0,0.0,975.8,975.8,487.8,117.0,16.69,15.29,15.38,0.3,0.26,0.28,0.2,0.19,0.18,17.0,16.36,0.31,0.3,1835.0,0.32
project_testing-0014.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.004,2.457,0.0,-0.005,0.0,6.169,-2.4,-0.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.851,0.0,7.956,-1.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.18,0.0,0.0,0.0,0.0,115.05,0.0,0.0,0.0,0.0,0.0,63.2,0.0,0.0,0.0,0.0,0.0,0.0,2159.09,0.0,0.0,0.0,726.43,594.9,0.0,0.0,652.34,0.0,2159.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1099.25,0.0,0.0,0.0,0.0,1099.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,6166.63,0.0,0.0,0.0,0.0,0.0,2908.3,0.0,0.0,0.0,0.0,2908.3,6166.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.024,0.0,0.0,0.0,0.0,0.415,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.924,3.213,0.0,0.0,2.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.542,32.542,0.0,10.574,10.574,5.611,0.0,16.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8207.0,0.0,413.0,1000.0,1413.0,0.0,423.0,0.0,0.0,292.0,3550.0,0.0,0.0,0.0,6804.0,289.0,2249.0,0.0,939.0,0.0,0.0,2712.0,0.0,0.0,0.0,8207.0,1338.0,3219.0,89.6,4.28,0.005,16.869,0.0,0.0,0.0,0.0,0.0,1218.9,776.4,1011.2,2.221,8.519,0.0,0.0,92.0,0.0,0.0,0.0,269.61,118.8,0.0,388.41,137.25,0.0,137.25,0.0,0.0,0.0,607.14,0.0,607.14,1132.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,443.19,144.0,0.0,587.19,179.17,0.0,179.17,0.0,0.0,0.0,377.87,0.0,377.87,1144.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,371.87,120.0,0.0,491.87,84.77,0.0,84.77,0.0,0.0,0.0,357.14,0.0,357.14,933.78,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,0.0,0.0,0.0,0.0,0.0,6.57,1.64,0.0,0.0,487.9,487.9,0.0,73.1,9.06,9.61,9.27,0.77,0.9,0.82,0.1,0.12,0.11,9.0,9.73,0.79,1.02,6679.0,1.22
-project_testing-0015.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,0.0,4.719,30.52,-3.458,-0.063,-1.139,4.823,0.003,0.633,5.331,0.0,0.0,3.681,12.739,0.0,7.73,-1.933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1240.98,24.09,38.16,16.61,0.0,0.0,14.59,77.54,1559.1,0.0,0.0,0.0,0.0,0.0,0.0,630.39,0.0,57.56,27.81,0.0,409.32,201.29,0.0,0.0,-585.67,812.02,812.63,1168.52,0.0,0.0,-6277.28,18.65,1022.44,0.0,5691.61,41.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.82,0.0,412.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.72,788.26,22374.95,390.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.9,28652.23,0.0,0.0,0.0,0.0,0.0,21781.46,0.0,0.0,0.0,0.0,21781.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.742,0.093,0.165,0.072,0.0,0.0,0.06,0.307,6.319,0.0,0.0,0.0,0.0,0.0,0.0,2.551,0.0,0.349,0.099,0.0,1.608,0.79,0.0,0.0,3.257,3.216,4.724,0.0,0.0,-40.48,0.081,4.204,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,2.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.367,2.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.907,0.0,0.0,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.776,145.256,0.0,-11.681,28.799,0.0,5.351,2.199,108.907,0.0,275.1,669.9,7090.0,19460.7,0.0,0.0,25766.0,0.0,2148.0,1200.0,3348.0,0.0,282.0,0.0,0.0,1406.0,4980.0,684.0,0.0,0.0,10112.0,1085.0,1675.0,0.0,626.0,0.0,0.0,12900.0,1928.0,0.0,868.0,25766.0,6423.0,3022.0,89.6,4.28,0.109,65.444,0.0,15.308,0.0,6.811,1.327,2588.6,2437.1,2503.4,5.791,32.98,6.184,0.0,355.0,0.0,0.0,0.0,734.12,118.8,-836.82,16.1,0.0,0.0,0.0,4.87,104.4,109.27,81.6,0.0,81.6,2232.65,2025.68,0.0,2025.68,0.0,0.0,0.0,0.0,0.0,0.0,1206.78,144.0,-1309.48,41.3,0.0,0.0,0.0,47.59,144.0,191.59,50.79,0.0,50.79,1917.29,1633.61,0.0,1633.61,0.0,0.0,0.0,0.0,0.0,0.0,1012.58,450.0,-1132.4,330.18,0.0,0.0,0.0,58.87,132.0,190.87,48.0,0.0,48.0,2202.66,1633.61,0.0,1633.61,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1678.0,0.0,419.5,1678.0,23.3,66.0,419.5,0.0,0.0,25.77,0.0,66.0,58.0,1392.3,1392.3,464.0,83.6,15.34,16.8,16.09,1.52,1.69,1.55,0.67,0.63,0.65,14.55,18.0,1.93,2.15,6831.0,2.59
-project_testing-0016.osw,0,0.124,0.017,0.0,0.108,0.0,0.782,1.973,-0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.574,0.0,0.275,0.849,4.805,0.584,0.0,3.531,0.0,85.995,-5.554,-0.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.284,0.0,26.575,-7.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-645.17,0.0,0.0,0.0,3.63,566.93,1009.8,0.0,0.0,591.37,0.0,0.0,0.0,0.0,0.0,189.13,0.0,41.27,0.0,0.0,0.0,0.0,0.0,0.0,-3302.24,0.0,0.0,0.0,0.0,0.0,-5817.52,0.0,758.32,0.0,2515.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,33959.96,0.0,0.0,0.0,0.0,0.0,0.0,33959.96,30657.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36475.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.471,0.0,0.0,0.0,0.017,2.412,4.157,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.768,0.0,0.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-36.54,0.0,3.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,230.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,207.577,244.118,0.0,-22.972,13.568,0.0,230.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5868.0,0.0,77179.0,0.0,6707.0,800.0,7507.0,804.0,118.0,0.0,394.0,4741.0,4520.0,0.0,0.0,0.0,22891.0,3046.0,9268.0,2238.0,263.0,0.0,1775.0,44399.0,0.0,0.0,0.0,77179.0,13204.0,15300.0,89.6,4.28,10.572,138.039,0.0,0.0,0.0,0.0,0.638,2197.0,2197.0,826.8,9.267,79.561,1096.086,1.0,124.0,0.0,0.0,0.0,345.24,118.8,-547.22,-83.17,0.0,0.0,0.0,209.8,104.4,314.2,0.0,0.0,0.0,231.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.52,144.0,-769.5,-57.97,0.0,0.0,0.0,2050.18,144.0,2194.18,0.0,0.0,0.0,2136.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,476.2,390.0,-711.83,154.36,0.0,0.0,0.0,2536.05,132.0,2668.05,0.0,0.0,0.0,2822.41,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,105.4,1203.0,5.87,0.0,77.18,0.0,50.0,0.0,2229.8,2471.9,371.6,200.7,13.43,13.82,11.66,1.41,0.62,0.8,0.58,0.18,0.22,13.0,7.36,1.92,0.78,3926.0,2.2
-project_testing-0017.osw,0,-0.009,-0.014,0.0,0.005,0.0,-0.163,1.443,0.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.097,0.0,-0.276,0.551,0.094,-0.004,0.0,0.156,0.0,0.394,-1.907,0.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.35,0.0,0.484,-1.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-271.75,0.0,0.0,0.0,0.16,18.99,0.0,0.0,0.0,81.75,0.0,0.35,0.0,0.0,0.85,0.0,0.0,5.97,0.0,0.0,0.0,0.0,0.0,0.0,-350.67,60.97,62.37,0.0,0.0,0.0,-497.34,0.0,187.02,0.0,146.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-347.47,0.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,0.0,0.0,3.2,149.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,0.0,0.0,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.354,0.0,0.0,0.0,0.004,0.437,0.0,0.0,0.0,2.431,0.0,0.005,0.0,0.0,0.015,0.0,0.0,0.236,0.0,0.0,0.0,0.0,0.0,0.0,1.669,1.648,0.0,0.0,0.0,-55.423,0.0,5.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-42.042,13.381,0.0,-42.06,13.363,0.0,0.0,0.018,0.0,0.0,0.0,0.0,0.0,0.0,1374.0,0.0,2468.0,0.0,-40.0,600.0,560.0,159.0,132.0,0.0,29.0,103.0,4290.0,0.0,0.0,0.0,6088.0,55.0,1320.0,84.0,146.0,0.0,101.0,690.0,0.0,0.0,0.0,2468.0,721.0,726.0,82.04,45.68,1.506,0.032,0.0,0.0,0.0,0.0,0.0,1315.8,1282.9,1123.7,0.802,1.236,1733.518,332.0,0.0,0.0,0.0,0.0,324.49,105.6,-694.29,-264.2,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.0,0.55,-263.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,943.2,144.0,-1313.0,-225.8,0.0,0.0,0.0,0.0,0.0,0.0,0.53,0.0,0.53,-225.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,469.14,450.0,-900.58,18.57,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.39,18.96,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,136.5,0.0,273.0,0.0,136.5,273.0,0.0,37.6,152.6,1.37,0.0,1.23,1.23,0.0,0.0,529.4,560.1,132.3,63.5,8.41,9.29,9.29,1.02,0.96,0.9,0.34,0.27,0.31,8.55,9.27,1.15,1.04,6129.0,1.32
-project_testing-0018.osw,0,-0.018,0.045,0.0,-0.031,0.0,-2.427,3.51,-0.394,0.0,-2.378,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,-0.059,0.946,-0.034,0.016,0.0,-0.043,0.0,4.436,-7.921,-0.41,0.0,4.487,0.0,0.0,0.0,0.0,0.0,0.0,0.032,0.0,0.185,-1.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.54,87.61,0.0,0.0,81.75,0.0,1.03,0.0,0.0,0.0,44.44,0.0,6.85,0.0,0.0,0.0,25.14,0.0,0.0,572.31,109.02,111.51,0.0,0.0,0.0,0.0,0.0,99.43,0.0,572.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,81.48,0.0,0.0,0.0,0.0,0.0,0.0,81.48,653.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,653.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.284,2.079,0.0,0.0,2.431,0.0,0.014,0.0,0.0,0.0,1.209,0.0,0.3,0.0,0.0,0.0,0.696,0.0,0.0,2.985,2.947,0.0,0.0,0.0,0.0,0.0,2.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.456,16.456,0.0,15.902,15.902,0.0,0.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8026.0,0.0,9114.0,0.0,-493.0,1000.0,507.0,0.0,88.0,0.0,0.0,1267.0,4750.0,0.0,0.0,0.0,7481.0,292.0,1084.0,0.0,97.0,0.0,0.0,8020.0,0.0,0.0,0.0,9114.0,747.0,250.0,82.04,45.68,0.76,0.515,0.0,0.0,0.0,0.0,1.004,2062.3,1862.7,1497.3,5.677,6.943,0.0,0.0,0.0,0.0,0.0,0.0,386.82,105.6,0.0,492.42,0.0,0.0,0.0,0.5,140.4,140.9,0.0,0.0,0.0,633.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1124.39,144.0,0.0,1268.39,0.0,0.0,0.0,7.07,144.0,151.07,0.0,0.0,0.0,1419.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,559.26,120.0,0.0,679.26,0.0,0.0,0.0,6.08,132.0,138.08,0.0,0.0,0.0,817.34,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,3171.0,0.0,0.0,0.0,66.5,0.0,0.0,8.03,0.0,9.11,0.0,50.0,0.0,335.8,335.8,0.0,30.2,11.41,15.17,11.77,1.32,0.95,1.1,0.32,0.24,0.27,9.55,13.18,1.54,1.12,6256.0,2.06
+project_testing-0015.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,0.0,4.719,30.52,-3.458,-0.063,-1.139,4.823,0.003,0.633,5.331,0.0,0.0,3.681,12.739,0.0,7.73,-1.933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1240.98,24.09,38.16,16.61,0.0,0.0,14.59,77.54,1559.1,0.0,0.0,0.0,0.0,0.0,0.0,630.39,0.0,57.56,27.81,0.0,409.32,201.29,0.0,0.0,-585.67,812.02,812.63,1168.52,0.0,0.0,-6277.28,18.65,1022.44,0.0,5691.61,41.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.82,0.0,412.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.72,788.26,22374.95,390.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.9,28652.23,0.0,0.0,0.0,0.0,0.0,21781.46,0.0,0.0,0.0,0.0,21781.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.742,0.093,0.165,0.072,0.0,0.0,0.06,0.307,6.319,0.0,0.0,0.0,0.0,0.0,0.0,2.551,0.0,0.349,0.099,0.0,1.608,0.79,0.0,0.0,3.257,3.216,4.724,0.0,0.0,-40.48,0.081,4.204,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,2.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.367,2.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.907,0.0,0.0,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.776,145.256,0.0,-11.681,28.799,0.0,5.351,2.199,108.907,0.0,275.1,669.9,7090.0,19460.7,0.0,0.0,25766.0,0.0,2148.0,1200.0,3348.0,0.0,282.0,0.0,0.0,1406.0,4980.0,684.0,0.0,0.0,10112.0,1085.0,1675.0,0.0,626.0,0.0,0.0,12900.0,1928.0,0.0,868.0,25766.0,6423.0,3022.0,89.6,4.28,0.109,65.444,0.0,15.308,0.0,6.811,1.327,2588.6,2437.1,2503.4,5.791,32.98,6.184,0.0,355.0,0.0,0.0,0.0,734.12,448.8,-853.94,328.98,0.0,0.0,0.0,4.87,104.4,109.27,81.6,0.0,81.6,2545.53,2025.68,0.0,2025.68,0.0,0.0,0.0,0.0,0.0,0.0,1206.78,144.0,-1309.48,41.3,0.0,0.0,0.0,47.59,144.0,191.59,50.79,0.0,50.79,1917.29,1633.61,0.0,1633.61,0.0,0.0,0.0,0.0,0.0,0.0,1012.58,450.0,-1132.4,330.18,0.0,0.0,0.0,58.87,132.0,190.87,48.0,0.0,48.0,2202.66,1633.61,0.0,1633.61,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1678.0,0.0,419.5,1678.0,23.3,66.0,419.5,0.0,0.0,25.77,0.0,66.0,58.0,1392.3,1392.3,464.0,83.6,15.34,16.8,16.09,1.52,1.69,1.55,0.67,0.63,0.65,14.55,18.0,1.93,2.15,6831.0,2.59
+project_testing-0016.osw,0,0.124,0.017,0.0,0.108,0.0,0.782,1.973,-0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.574,0.0,0.275,0.849,4.805,0.584,0.0,3.531,0.0,85.995,-5.554,-0.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.284,0.0,26.575,-7.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-645.17,0.0,0.0,0.0,3.63,566.93,1009.8,0.0,0.0,591.37,0.0,0.0,0.0,0.0,0.0,189.13,0.0,41.27,0.0,0.0,0.0,0.0,0.0,0.0,-3302.24,0.0,0.0,0.0,0.0,0.0,-5817.52,0.0,758.32,0.0,2515.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,33959.96,0.0,0.0,0.0,0.0,0.0,0.0,33959.96,30657.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36475.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.471,0.0,0.0,0.0,0.017,2.412,4.157,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.768,0.0,0.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-36.54,0.0,3.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,230.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,207.577,244.118,0.0,-22.972,13.568,0.0,230.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5868.0,0.0,77179.0,0.0,6707.0,800.0,7507.0,804.0,118.0,0.0,394.0,4741.0,4520.0,0.0,0.0,0.0,22891.0,3046.0,9268.0,2238.0,263.0,0.0,1775.0,44399.0,0.0,0.0,0.0,77179.0,13204.0,15300.0,89.6,4.28,10.572,138.039,0.0,0.0,0.0,0.0,0.638,2197.0,2197.0,826.8,9.267,79.561,1096.086,1.0,124.0,0.0,0.0,0.0,345.24,388.8,-580.88,153.16,0.0,0.0,0.0,209.8,104.4,314.2,0.0,0.0,0.0,467.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.52,144.0,-769.5,-57.97,0.0,0.0,0.0,2050.18,144.0,2194.18,0.0,0.0,0.0,2136.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,476.2,390.0,-711.83,154.36,0.0,0.0,0.0,2536.05,132.0,2668.05,0.0,0.0,0.0,2822.41,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,105.4,1203.0,5.87,0.0,77.18,0.0,50.0,0.0,2229.8,2471.9,371.6,200.7,13.43,13.82,11.66,1.41,0.62,0.8,0.58,0.18,0.22,13.0,7.36,1.92,0.78,3926.0,2.2
+project_testing-0017.osw,0,-0.009,-0.014,0.0,0.005,0.0,-0.163,1.443,0.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.097,0.0,-0.276,0.551,0.094,-0.004,0.0,0.156,0.0,0.394,-1.907,0.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.35,0.0,0.484,-1.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-271.75,0.0,0.0,0.0,0.16,18.99,0.0,0.0,0.0,81.75,0.0,0.35,0.0,0.0,0.85,0.0,0.0,5.97,0.0,0.0,0.0,0.0,0.0,0.0,-350.67,60.97,62.37,0.0,0.0,0.0,-497.34,0.0,187.02,0.0,146.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-347.47,0.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,0.0,0.0,3.2,149.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,0.0,0.0,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.354,0.0,0.0,0.0,0.004,0.437,0.0,0.0,0.0,2.431,0.0,0.005,0.0,0.0,0.015,0.0,0.0,0.236,0.0,0.0,0.0,0.0,0.0,0.0,1.669,1.648,0.0,0.0,0.0,-55.423,0.0,5.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-42.042,13.381,0.0,-42.06,13.363,0.0,0.0,0.018,0.0,0.0,0.0,0.0,0.0,0.0,1374.0,0.0,2468.0,0.0,-40.0,600.0,560.0,159.0,132.0,0.0,29.0,103.0,4290.0,0.0,0.0,0.0,6088.0,55.0,1320.0,84.0,146.0,0.0,101.0,690.0,0.0,0.0,0.0,2468.0,721.0,726.0,82.04,45.68,1.506,0.032,0.0,0.0,0.0,0.0,0.0,1315.8,1282.9,1123.7,0.802,1.236,1733.518,332.0,0.0,0.0,0.0,0.0,324.49,195.6,-1948.34,-1428.25,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.0,0.55,-1427.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,401.82,438.0,-1948.34,-1108.52,0.0,0.0,0.0,0.0,0.0,0.0,0.71,0.0,0.71,-1107.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,469.14,450.0,-900.58,18.57,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.39,18.96,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,136.5,0.0,273.0,0.0,136.5,273.0,0.0,37.6,152.6,1.37,0.0,1.23,1.23,0.0,0.0,529.4,560.1,132.3,63.5,8.41,9.29,9.29,1.02,0.96,0.9,0.34,0.27,0.31,8.55,9.27,1.15,1.04,6129.0,1.32
+project_testing-0018.osw,0,-0.018,0.045,0.0,-0.031,0.0,-2.427,3.51,-0.394,0.0,-2.378,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,-0.059,0.946,-0.034,0.016,0.0,-0.043,0.0,4.436,-7.921,-0.41,0.0,4.487,0.0,0.0,0.0,0.0,0.0,0.0,0.032,0.0,0.185,-1.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.54,87.61,0.0,0.0,81.75,0.0,1.03,0.0,0.0,0.0,44.44,0.0,6.85,0.0,0.0,0.0,25.14,0.0,0.0,572.31,109.02,111.51,0.0,0.0,0.0,0.0,0.0,99.43,0.0,572.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,81.48,0.0,0.0,0.0,0.0,0.0,0.0,81.48,653.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,653.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.284,2.079,0.0,0.0,2.431,0.0,0.014,0.0,0.0,0.0,1.209,0.0,0.3,0.0,0.0,0.0,0.696,0.0,0.0,2.985,2.947,0.0,0.0,0.0,0.0,0.0,2.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.456,16.456,0.0,15.902,15.902,0.0,0.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8026.0,0.0,9114.0,0.0,-493.0,1000.0,507.0,0.0,88.0,0.0,0.0,1267.0,4750.0,0.0,0.0,0.0,7481.0,292.0,1084.0,0.0,97.0,0.0,0.0,8020.0,0.0,0.0,0.0,9114.0,747.0,250.0,82.04,45.68,0.76,0.515,0.0,0.0,0.0,0.0,1.004,2062.3,1862.7,1497.3,5.677,6.943,0.0,0.0,0.0,0.0,0.0,0.0,386.82,105.6,0.0,492.42,0.0,0.0,0.0,0.5,140.4,140.9,0.0,0.0,0.0,633.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,497.87,108.0,0.0,605.87,0.0,0.0,0.0,0.65,97.2,97.85,0.0,0.0,0.0,703.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,559.26,120.0,0.0,679.26,0.0,0.0,0.0,6.08,132.0,138.08,0.0,0.0,0.0,817.34,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,3171.0,0.0,0.0,0.0,66.5,0.0,0.0,8.03,0.0,9.11,0.0,50.0,0.0,335.8,335.8,0.0,30.2,11.41,15.17,11.77,1.32,0.95,1.1,0.32,0.24,0.27,9.55,13.18,1.54,1.12,6256.0,2.06
project_testing-0019.osw,0,0.0,0.356,0.0,-0.691,0.0,-0.025,0.62,-0.161,0.0,-0.016,0.0,0.0,6.149,0.0,0.0,0.0,0.608,0.0,0.121,0.685,0.0,2.941,0.0,6.12,0.0,11.103,-1.907,-0.198,0.0,10.416,0.0,0.0,28.457,0.0,0.0,0.0,12.931,0.0,6.48,-1.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,709.42,0.0,0.0,0.0,776.59,0.0,233.65,0.0,0.0,20078.47,0.0,0.0,0.0,0.0,0.0,0.0,115.04,0.0,0.0,24320.15,575.19,575.62,0.0,0.0,0.0,0.0,0.0,1256.17,0.0,24320.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,25580.14,0.0,0.0,0.0,0.0,0.0,0.0,1260.0,0.0,0.0,0.0,1260.0,25580.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.237,0.0,0.0,0.0,3.193,0.0,0.864,0.0,0.0,74.901,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,2.307,2.278,0.0,0.0,0.0,0.0,0.0,5.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.498,99.498,0.0,92.411,92.411,0.0,0.0,7.087,0.0,0.0,0.0,0.0,0.0,0.0,15450.0,0.0,31166.0,0.0,1803.0,800.0,2603.0,0.0,564.0,0.0,306.0,1274.0,4520.0,5914.0,0.0,0.0,15932.0,1375.0,1979.0,0.0,1252.0,0.0,1379.0,10350.0,10812.0,0.0,0.0,31166.0,4672.0,2701.0,89.6,4.28,8.043,75.182,0.0,0.0,0.0,0.0,2.365,9810.0,4891.2,9810.0,11.819,42.822,0.0,13.0,117.0,0.0,0.0,0.0,2356.22,118.8,0.0,2475.02,0.0,0.0,0.0,0.0,0.0,0.0,263.04,0.0,263.04,2738.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3873.24,144.0,0.0,4017.24,0.0,0.0,0.0,0.0,0.0,0.0,163.71,0.0,163.71,4180.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3249.96,120.0,0.0,3369.96,0.0,0.0,0.0,0.0,0.0,0.0,154.73,0.0,154.73,3524.69,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1678.0,0.0,1678.0,1678.0,44.7,131.8,1678.0,15.45,0.0,31.17,0.0,40.0,0.0,928.2,928.2,928.2,141.7,10.13,3.53,3.15,2.0,6.85,3.83,0.39,2.38,0.45,4.0,8.82,2.88,9.69,699.0,9.81
-project_testing-0020.osw,0,-0.0,0.055,0.0,-0.0,0.0,-0.092,9.832,-0.008,0.382,0.054,-0.011,0.0,0.0,0.0,0.0,0.0,0.2,0.0,-0.086,0.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-191.25,18.29,10.15,6.78,54.63,247.89,625.88,40.09,279.22,137.17,0.0,0.0,0.0,0.0,0.0,0.0,82.59,17.21,13.95,0.0,111.32,2.84,0.0,0.0,182.28,238.64,241.08,552.33,0.0,0.0,-2678.72,136.4,175.9,0.0,2861.0,59.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3137.29,0.0,0.0,0.0,3137.29,0.0,33.31,0.0,0.0,0.0,0.0,0.0,313.12,0.0,0.0,0.0,0.0,346.43,4110.39,444.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,444.39,6789.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.128,0.325,0.188,0.123,0.918,4.121,10.211,0.664,5.053,2.431,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.343,0.246,0.0,1.963,0.056,0.0,0.0,4.045,3.993,10.076,0.0,0.0,-54.295,2.465,3.118,0.0,1.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,0.0,0.0,0.226,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.594,75.888,0.0,0.728,55.022,16.015,2.352,2.499,0.0,0.0,470.9,1388.1,814.8,9116.2,2332.0,0.0,0.0,0.0,2018.0,600.0,2618.0,0.0,186.0,0.0,0.0,1513.0,4290.0,0.0,0.0,0.0,8830.0,604.0,2238.0,0.0,223.0,0.0,0.0,4668.0,0.0,0.0,0.0,7538.0,1093.0,1554.0,95.0,32.9,26.138,-0.046,0.0,5.014,0.0,5.525,4.253,4413.1,4164.6,4201.2,5.648,0.0,3.223,526.0,0.0,0.0,0.0,0.0,1434.92,96.0,-1415.94,114.98,449.34,0.0,449.34,2.21,108.0,110.21,106.41,0.0,106.41,780.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013.41,144.0,-1986.78,170.63,560.11,0.0,560.11,24.37,144.0,168.37,80.08,0.0,80.08,979.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1934.72,510.0,-1909.13,535.59,241.95,0.0,241.95,25.87,132.0,157.87,54.57,0.0,54.57,989.98,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,0.0,623.0,0.0,0.0,0.0,2.33,0.0,0.0,0.0,30.0,0.0,416.7,416.7,0.0,62.5,14.75,14.76,15.6,3.13,2.52,2.87,1.46,0.92,1.15,16.09,16.09,4.13,3.3,6161.0,4.41
+project_testing-0020.osw,0,-0.0,0.055,0.0,-0.0,0.0,-0.092,9.832,-0.008,0.382,0.054,-0.011,0.0,0.0,0.0,0.0,0.0,0.2,0.0,-0.086,0.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-191.25,18.29,10.15,6.78,54.63,247.89,625.88,40.09,279.22,137.17,0.0,0.0,0.0,0.0,0.0,0.0,82.59,17.21,13.95,0.0,111.32,2.84,0.0,0.0,182.28,238.64,241.08,552.33,0.0,0.0,-2678.72,136.4,175.9,0.0,2861.0,59.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3137.29,0.0,0.0,0.0,3137.29,0.0,33.31,0.0,0.0,0.0,0.0,0.0,313.12,0.0,0.0,0.0,0.0,346.43,4110.39,444.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,444.39,6789.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.128,0.325,0.188,0.123,0.918,4.121,10.211,0.664,5.053,2.431,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.343,0.246,0.0,1.963,0.056,0.0,0.0,4.045,3.993,10.076,0.0,0.0,-54.295,2.465,3.118,0.0,1.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,0.0,0.0,0.226,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.594,75.888,0.0,0.728,55.022,16.015,2.352,2.499,0.0,0.0,470.9,1388.1,814.8,9116.2,2332.0,0.0,0.0,0.0,2018.0,600.0,2618.0,0.0,186.0,0.0,0.0,1513.0,4290.0,0.0,0.0,0.0,8830.0,604.0,2238.0,0.0,223.0,0.0,0.0,4668.0,0.0,0.0,0.0,7538.0,1093.0,1554.0,95.0,32.9,26.138,-0.046,0.0,5.014,0.0,5.525,4.253,4413.1,4164.6,4201.2,5.648,0.0,3.223,526.0,0.0,0.0,0.0,0.0,1434.92,486.0,-1415.94,504.98,449.34,0.0,449.34,2.21,108.0,110.21,106.41,0.0,106.41,1170.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013.41,144.0,-1986.78,170.63,560.11,0.0,560.11,24.37,144.0,168.37,80.08,0.0,80.08,979.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1934.72,510.0,-1909.13,535.59,241.95,0.0,241.95,25.87,132.0,157.87,54.57,0.0,54.57,989.98,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,0.0,623.0,0.0,0.0,0.0,2.33,0.0,0.0,0.0,30.0,0.0,416.7,416.7,0.0,62.5,14.75,14.76,15.6,3.13,2.52,2.87,1.46,0.92,1.15,16.09,16.09,4.13,3.3,6161.0,4.41
project_testing-0021.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.349,0.0,11.17,0.0,57.335,-10.974,-0.421,-2.152,0.887,0.007,0.0,21.548,0.0,0.0,0.0,8.657,0.0,20.324,-9.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.67,0.0,390.62,133.32,0.0,128.52,0.0,0.0,0.0,0.0,0.77,11.39,16.21,0.0,220.06,2.86,0.0,0.0,1594.89,0.0,0.0,327.06,0.0,0.0,0.0,0.0,239.21,0.0,1594.89,98.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,883.4,0.0,0.0,0.0,883.4,0.0,0.0,0.0,13.97,0.0,12188.96,0.0,294.2,0.0,0.0,0.0,0.0,12497.13,20775.0,0.0,0.0,0.0,0.0,0.0,5799.58,0.0,0.0,0.0,0.0,5799.58,20775.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,6.319,2.189,0.0,1.788,0.0,0.0,0.0,0.0,0.013,0.296,0.226,0.0,3.452,0.056,0.0,0.0,0.0,0.0,5.27,0.0,0.0,0.0,0.0,3.928,0.0,1.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.509,0.0,0.0,0.0,0.0,0.0,0.0,0.095,0.0,82.749,0.0,1.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.416,147.416,0.0,25.447,25.447,4.509,84.841,32.619,0.0,0.0,0.0,0.0,511.1,3993.3,0.0,0.0,67719.0,0.0,5832.0,400.0,6232.0,0.0,112.0,0.0,1130.0,4113.0,4060.0,8097.0,0.0,0.0,27752.0,785.0,9456.0,0.0,210.0,0.0,4941.0,33282.0,12129.0,0.0,0.0,67719.0,4472.0,12685.0,87.98,17.6,0.062,97.58,0.0,2.447,0.0,2.675,3.197,1829.6,1641.9,1538.8,6.117,71.864,0.0,0.0,212.0,0.0,0.0,0.0,701.03,105.6,0.0,806.63,113.55,0.0,113.55,79.75,118.8,198.55,1388.78,0.0,1388.78,2507.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1492.51,144.0,0.0,1636.51,160.93,0.0,160.93,1207.39,144.0,1351.39,1211.38,0.0,1211.38,4360.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,894.93,120.0,0.0,1014.93,68.13,0.0,68.13,933.25,132.0,1065.25,712.2,0.0,712.2,2860.51,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,3310.0,0.0,0.0,3310.0,0.0,0.0,3310.0,0.0,0.0,54.18,13.54,30.0,0.0,1921.2,1921.2,0.0,288.2,17.52,18.45,17.68,1.11,1.29,1.16,0.59,0.66,0.59,9.64,18.55,1.53,1.53,3428.0,1.83
project_testing-0022.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.685,0.0,0.03,0.0,21.685,-4.135,0.073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.452,0.0,17.617,-11.983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.69,0.0,0.0,66.51,0.0,29.12,0.0,0.0,0.0,39.62,0.0,16.65,0.0,0.0,0.0,0.0,0.0,0.0,418.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.04,0.0,418.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6916.57,0.0,0.0,0.0,0.0,6916.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,8257.27,0.0,0.0,0.0,0.0,0.0,922.07,0.0,0.0,0.0,0.0,922.07,8257.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.225,0.0,0.0,1.092,0.0,0.419,0.0,0.0,0.0,0.621,0.0,0.349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.32,47.32,0.0,6.827,6.827,35.307,0.0,5.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37516.0,0.0,2964.0,1000.0,3964.0,0.0,224.0,0.0,0.0,2090.0,4750.0,0.0,0.0,0.0,18854.0,1321.0,10469.0,0.0,419.0,0.0,0.0,16912.0,0.0,0.0,0.0,37516.0,5207.0,14977.0,87.98,17.6,0.036,31.184,0.0,0.0,0.0,0.0,0.622,1326.0,1326.0,825.5,5.729,58.422,0.0,0.0,177.0,0.0,0.0,0.0,188.08,105.6,0.0,293.68,889.02,0.0,889.02,0.0,0.0,0.0,220.8,0.0,220.8,1403.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,400.44,144.0,0.0,544.44,1260.02,0.0,1260.02,0.0,0.0,0.0,192.6,0.0,192.6,1997.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.11,120.0,0.0,360.11,533.41,0.0,533.41,0.0,0.0,0.0,113.23,0.0,113.23,1006.75,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,0.0,0.0,0.0,0.0,33.76,3.75,50.0,0.0,1369.6,1369.6,0.0,246.4,11.38,12.3,11.75,0.58,0.61,0.65,0.16,0.14,0.16,8.45,5.64,0.92,0.75,5144.0,1.33
-project_testing-0023.osw,0,0.0,0.068,0.0,0.0,0.616,-0.026,3.906,-0.095,0.0,0.0,0.0,0.005,2.627,0.0,0.0,-0.162,-0.004,0.0,0.044,0.335,0.0,0.315,0.0,0.0,1.458,1.101,-5.238,-0.164,0.0,0.0,0.0,0.299,8.142,0.0,0.0,0.879,3.078,0.0,1.463,-0.495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-650.59,0.0,0.0,0.0,140.74,677.1,0.0,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.23,0.0,0.0,0.0,0.0,0.0,0.0,-528.36,0.0,0.0,0.0,0.0,0.0,-2853.31,0.0,1580.05,0.0,2324.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,1882.58,0.0,0.0,0.0,0.0,0.0,0.0,1882.58,2935.75,0.0,0.0,0.0,0.0,0.0,973.39,608.14,0.0,0.0,0.0,1581.54,5789.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,1.212,0.0,0.0,0.0,0.655,3.002,0.0,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-18.4,0.0,6.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,3.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.074,35.474,0.0,-4.602,13.798,0.0,12.781,8.895,0.0,0.0,0.0,0.0,0.0,0.0,8510.0,0.0,11747.0,0.0,125.0,1200.0,1325.0,0.0,118.0,0.0,0.0,88.0,4980.0,4105.0,0.0,0.0,10511.0,614.0,605.0,0.0,263.0,0.0,0.0,819.0,5551.0,0.0,683.0,11746.0,3285.0,1145.0,89.6,4.28,7.209,10.879,0.0,0.0,0.0,0.0,2.231,1526.4,1526.4,717.3,5.477,11.809,124.794,0.0,71.0,0.0,0.0,0.0,351.54,118.8,-392.0,78.34,0.0,0.0,0.0,11.63,104.4,116.03,330.17,0.0,330.17,524.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,577.88,144.0,-618.34,103.54,0.0,0.0,0.0,113.65,144.0,257.65,205.49,0.0,205.49,566.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,484.89,270.0,-532.09,222.8,0.0,0.0,0.0,140.59,132.0,272.59,194.21,0.0,194.21,689.6,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,625.0,0.0,312.5,625.0,0.0,57.0,312.5,8.51,0.0,8.22,3.52,50.0,50.1,400.5,400.5,400.5,60.1,11.68,12.17,11.64,1.16,0.56,0.77,0.39,0.27,0.28,12.09,11.18,1.37,0.8,4909.0,1.53
-project_testing-0024.osw,0,0.0,0.024,0.047,0.133,0.0,-0.001,0.186,-0.016,0.0,0.022,0.0,0.0,0.069,0.0,0.0,0.0,0.071,0.0,0.024,0.493,0.0,0.188,-0.0,-0.246,0.0,2.167,-0.622,-0.159,0.0,0.153,0.0,0.0,0.282,0.0,0.0,0.0,2.33,0.0,1.83,-1.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.04,59.54,0.0,0.0,0.0,137.17,0.0,6.47,0.0,0.0,0.0,0.0,0.0,25.05,0.0,0.0,0.0,36.0,0.0,0.0,619.22,0.0,0.0,0.0,150.57,123.31,-206.06,0.0,280.13,0.0,825.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,1650.97,0.0,0.0,0.0,0.0,0.0,1031.75,0.0,0.0,0.0,0.0,1031.75,1857.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.094,0.865,0.0,0.0,0.0,2.431,0.0,0.138,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,0.0,0.652,0.0,0.0,0.0,0.0,0.0,3.255,2.666,-4.177,0.0,4.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.121,21.298,0.0,11.318,15.495,0.0,0.0,5.803,0.0,0.0,0.0,0.0,0.0,0.0,1785.0,0.0,8731.0,162.0,1734.0,800.0,2696.0,0.0,186.0,214.0,76.0,1154.0,4520.0,266.0,0.0,0.0,10614.0,877.0,3321.0,0.0,223.0,0.0,141.0,3345.0,396.0,0.0,0.0,8731.0,2439.0,2187.0,95.0,32.9,1.045,4.506,0.0,0.0,0.0,0.0,0.0,1050.8,966.0,1050.8,0.954,8.897,0.0,65.0,0.0,0.0,0.0,0.0,404.16,96.0,-108.94,391.22,0.0,0.0,0.0,0.0,0.0,0.0,247.06,0.0,247.06,638.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.1,144.0,-152.86,558.24,0.0,0.0,0.0,0.0,0.0,0.0,185.92,0.0,185.92,744.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,544.93,150.0,-146.88,548.05,0.0,0.0,0.0,0.0,0.0,0.0,126.7,0.0,126.7,674.75,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,17.59,0.0,0.0,634.0,0.0,317.0,634.0,21.8,57.2,317.0,1.79,0.0,7.86,0.87,0.0,0.0,1189.0,1189.0,594.6,107.2,10.34,9.98,10.32,0.92,0.95,0.91,0.28,0.29,0.26,9.73,10.0,0.98,1.01,994.0,1.05
+project_testing-0023.osw,0,0.0,0.068,0.0,0.0,0.616,-0.026,3.906,-0.095,0.0,0.0,0.0,0.005,2.627,0.0,0.0,-0.162,-0.004,0.0,0.044,0.335,0.0,0.315,0.0,0.0,1.458,1.101,-5.238,-0.164,0.0,0.0,0.0,0.299,8.142,0.0,0.0,0.879,3.078,0.0,1.463,-0.495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-650.59,0.0,0.0,0.0,140.74,677.1,0.0,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.23,0.0,0.0,0.0,0.0,0.0,0.0,-528.36,0.0,0.0,0.0,0.0,0.0,-2853.31,0.0,1580.05,0.0,2324.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,1882.58,0.0,0.0,0.0,0.0,0.0,0.0,1882.58,2935.75,0.0,0.0,0.0,0.0,0.0,973.39,608.14,0.0,0.0,0.0,1581.54,5789.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,1.212,0.0,0.0,0.0,0.655,3.002,0.0,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-18.4,0.0,6.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.475,3.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.074,35.474,0.0,-4.602,13.798,0.0,12.781,8.895,0.0,0.0,0.0,0.0,0.0,0.0,8510.0,0.0,11747.0,0.0,125.0,1200.0,1325.0,0.0,118.0,0.0,0.0,88.0,4980.0,4105.0,0.0,0.0,10511.0,614.0,605.0,0.0,263.0,0.0,0.0,819.0,5551.0,0.0,683.0,11746.0,3285.0,1145.0,89.6,4.28,7.209,10.879,0.0,0.0,0.0,0.0,2.231,1526.4,1526.4,717.3,5.477,11.809,124.794,0.0,71.0,0.0,0.0,0.0,351.54,268.8,-398.74,221.6,0.0,0.0,0.0,11.63,104.4,116.03,330.17,0.0,330.17,667.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,577.88,144.0,-618.34,103.54,0.0,0.0,0.0,113.65,144.0,257.65,205.49,0.0,205.49,566.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,484.89,270.0,-532.09,222.8,0.0,0.0,0.0,140.59,132.0,272.59,194.21,0.0,194.21,689.6,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,625.0,0.0,312.5,625.0,0.0,57.0,312.5,8.51,0.0,8.22,3.52,50.0,50.1,400.5,400.5,400.5,60.1,11.68,12.17,11.64,1.16,0.56,0.77,0.39,0.27,0.28,12.09,11.18,1.37,0.8,4909.0,1.53
+project_testing-0024.osw,0,0.0,0.024,0.047,0.133,0.0,-0.001,0.186,-0.016,0.0,0.022,0.0,0.0,0.069,0.0,0.0,0.0,0.071,0.0,0.024,0.493,0.0,0.188,-0.0,-0.246,0.0,2.167,-0.622,-0.159,0.0,0.153,0.0,0.0,0.282,0.0,0.0,0.0,2.33,0.0,1.83,-1.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.04,59.54,0.0,0.0,0.0,137.17,0.0,6.47,0.0,0.0,0.0,0.0,0.0,25.05,0.0,0.0,0.0,36.0,0.0,0.0,619.22,0.0,0.0,0.0,150.57,123.31,-206.06,0.0,280.13,0.0,825.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,1650.97,0.0,0.0,0.0,0.0,0.0,1031.75,0.0,0.0,0.0,0.0,1031.75,1857.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.094,0.865,0.0,0.0,0.0,2.431,0.0,0.138,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,0.0,0.652,0.0,0.0,0.0,0.0,0.0,3.255,2.666,-4.177,0.0,4.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.121,21.298,0.0,11.318,15.495,0.0,0.0,5.803,0.0,0.0,0.0,0.0,0.0,0.0,1785.0,0.0,8731.0,162.0,1734.0,800.0,2696.0,0.0,186.0,214.0,76.0,1154.0,4520.0,266.0,0.0,0.0,10614.0,877.0,3321.0,0.0,223.0,0.0,141.0,3345.0,396.0,0.0,0.0,8731.0,2439.0,2187.0,95.0,32.9,1.045,4.506,0.0,0.0,0.0,0.0,0.0,1050.8,966.0,1050.8,0.954,8.897,0.0,65.0,0.0,0.0,0.0,0.0,404.16,126.0,-108.94,421.22,0.0,0.0,0.0,0.0,0.0,0.0,247.06,0.0,247.06,668.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.1,144.0,-152.86,558.24,0.0,0.0,0.0,0.0,0.0,0.0,185.92,0.0,185.92,744.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,544.93,150.0,-146.88,548.05,0.0,0.0,0.0,0.0,0.0,0.0,126.7,0.0,126.7,674.75,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,17.59,0.0,0.0,634.0,0.0,317.0,634.0,21.8,57.2,317.0,1.79,0.0,7.86,0.87,0.0,0.0,1189.0,1189.0,594.6,107.2,10.34,9.98,10.32,0.92,0.95,0.91,0.28,0.29,0.26,9.73,10.0,0.98,1.01,994.0,1.05
project_testing-0025.osw,0,0.0,-0.017,0.0,-0.415,0.0,-0.067,20.388,-0.092,0.35,0.056,0.0,0.0,7.189,0.0,0.0,0.0,-0.556,0.0,-0.239,1.791,0.0,0.418,0.0,1.448,0.0,1.823,-17.183,-0.151,-0.278,1.309,0.0,0.0,11.023,0.0,0.0,0.0,2.019,0.0,2.398,-1.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.17,218.46,16.38,163.92,531.89,430.72,68.3,349.16,180.14,0.0,1.88,0.0,0.0,0.0,0.0,0.0,20.26,4.03,0.0,48.76,39.04,0.0,0.0,4137.06,413.24,417.46,212.66,0.0,718.04,0.0,10.41,283.13,0.0,4137.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,1802.28,0.0,25.74,0.0,349.6,5276.06,6.51,0.0,0.0,0.0,0.0,7460.18,12636.25,0.0,0.0,0.0,0.0,0.0,60.05,0.0,0.0,0.0,978.95,1039.0,12636.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.163,4.148,0.303,2.574,8.275,7.93,1.179,6.319,3.193,0.0,0.04,0.0,0.0,0.0,0.0,0.0,0.402,0.071,0.0,0.861,0.69,0.0,0.0,7.004,6.915,3.888,0.0,15.523,0.0,0.188,5.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.235,0.0,0.175,0.0,2.373,35.818,0.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,0.0,5.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.172,131.172,0.0,74.682,74.682,0.0,50.646,5.844,0.0,0.0,1159.2,2568.7,13590.1,75969.1,11109.0,0.0,12168.0,0.0,970.0,400.0,1370.0,0.0,186.0,0.0,314.0,585.0,4060.0,8568.0,0.0,0.0,15939.0,479.0,1747.0,0.0,223.0,0.0,776.0,1719.0,6357.0,0.0,0.0,12168.0,1550.0,1543.0,95.0,32.9,31.988,1.453,0.0,39.992,0.0,13.596,1.826,6575.1,6575.1,5877.1,12.707,11.791,0.0,257.0,0.0,0.0,0.0,0.0,1947.97,96.0,0.0,2043.97,0.0,0.0,0.0,47.61,108.0,155.61,248.8,0.0,248.8,2448.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2733.29,144.0,0.0,2877.29,0.0,0.0,0.0,524.88,144.0,668.88,187.23,0.0,187.23,3733.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2626.47,120.0,0.0,2746.47,0.0,0.0,0.0,557.11,132.0,689.11,127.59,0.0,127.59,3563.17,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,634.0,0.0,0.0,634.0,21.2,0.0,634.0,11.11,0.0,10.95,1.22,30.0,0.0,840.8,840.8,0.0,75.6,12.19,12.46,11.76,4.8,4.5,4.44,1.5,1.09,1.16,13.18,12.18,6.11,5.29,3855.0,6.58
-project_testing-0026.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.142,0.0,-0.008,0.0,1.901,-4.39,-0.106,0.0,0.0,0.0,0.0,0.315,0.0,0.0,0.0,8.681,0.0,2.885,-6.434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.96,0.0,0.0,73.6,0.0,5.9,0.0,0.0,0.0,0.0,0.0,5.95,0.0,0.0,0.0,0.0,0.0,0.0,545.12,100.35,102.64,0.0,90.21,73.88,0.0,0.0,87.64,0.0,545.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,415.82,3173.23,0.0,0.0,0.0,3589.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,4640.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4640.63,0.0,0.0,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,2.189,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,0.0,0.0,0.0,0.0,2.747,2.712,0.0,5.576,4.567,0.0,0.0,2.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.123,16.198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.837,41.837,0.0,20.984,20.984,18.321,0.0,0.0,2.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13063.0,0.0,-162.0,1000.0,838.0,0.0,210.0,0.0,0.0,417.0,4750.0,758.0,0.0,0.0,11220.0,1079.0,4006.0,0.0,232.0,0.0,0.0,2816.0,1370.0,0.0,0.0,13063.0,6562.0,2083.0,82.04,45.68,0.009,3.191,0.0,0.0,0.0,0.0,3.271,1862.6,1277.9,1429.5,4.825,8.578,0.0,0.0,0.0,0.0,0.0,0.0,510.44,105.6,0.0,616.04,500.86,0.0,500.86,0.0,0.0,0.0,0.0,0.0,0.0,1166.28,49.38,0.0,49.38,0.0,0.0,0.0,0.0,0.0,0.0,1483.69,144.0,0.0,1627.69,640.76,0.0,640.76,0.0,0.0,0.0,0.0,0.0,0.0,2306.43,37.98,0.0,37.98,0.0,0.0,0.0,0.0,0.0,0.0,737.98,120.0,0.0,857.98,276.79,0.0,276.79,0.0,0.0,0.0,0.0,0.0,0.0,1172.75,37.98,0.0,37.98,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,7.84,5.23,40.0,0.0,1166.1,1166.1,0.0,174.8,8.85,9.88,9.26,1.19,1.4,1.29,0.3,0.27,0.28,8.64,9.91,1.2,1.44,6729.0,1.86
-project_testing-0027.osw,0,0.0,0.336,0.0,0.003,0.0,6.647,14.716,0.009,0.0,0.0,0.0,0.0,4.651,0.0,0.0,0.0,1.812,0.0,0.891,1.3,0.0,0.403,0.0,-0.003,0.0,43.283,-10.197,0.002,0.0,0.0,0.0,0.0,3.175,0.0,0.0,0.0,4.849,0.0,1.171,-1.261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-313.76,0.0,0.0,0.0,0.0,653.21,441.38,0.0,0.0,66.51,0.0,18.88,0.0,0.0,0.0,0.0,0.0,11.2,0.0,0.0,0.0,0.0,0.0,0.0,27.83,0.0,0.0,0.0,0.0,266.19,-1492.03,0.0,376.25,0.0,1519.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5483.78,0.0,0.0,0.0,0.0,5483.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,13077.24,0.0,0.0,0.0,0.0,0.0,6225.29,1340.33,0.0,0.0,0.0,7565.62,14569.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,0.0,0.0,11.434,7.542,0.0,0.0,1.092,0.0,0.255,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.089,-43.487,0.0,6.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.013,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.48,103.966,0.0,-10.063,33.424,27.993,0.0,42.55,0.0,0.0,0.0,0.0,0.0,0.0,24150.0,0.0,58616.0,0.0,8557.0,600.0,9157.0,0.0,224.0,0.0,0.0,6035.0,4290.0,1407.0,0.0,0.0,14222.0,859.0,1408.0,0.0,419.0,0.0,0.0,48829.0,3802.0,0.0,0.0,58616.0,4168.0,1398.0,87.98,17.6,30.506,41.479,0.0,0.0,0.0,0.0,2.515,3728.4,3640.2,1549.2,19.263,65.883,90.48,619.0,27.0,0.0,0.0,0.0,920.04,105.6,-1008.51,17.13,704.85,0.0,704.85,0.0,0.0,0.0,1811.62,0.0,1811.62,2533.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1958.8,144.0,-2047.27,55.53,999.0,0.0,999.0,0.0,0.0,0.0,1580.2,0.0,1580.2,2634.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1174.52,450.0,-1277.74,346.78,422.91,0.0,422.91,0.0,0.0,0.0,929.04,0.0,929.04,1698.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,2648.0,24.15,0.0,29.31,29.31,30.0,0.0,1166.1,1166.1,0.0,92.0,11.33,10.53,10.97,3.09,1.14,1.73,1.58,0.28,0.49,11.0,10.82,3.6,1.64,3587.0,3.73
-project_testing-0028.osw,0,0.161,0.276,0.0,0.247,0.0,0.213,11.349,0.316,0.0,1.864,0.0,0.0,0.0,0.0,0.0,0.0,5.92,0.0,4.936,7.715,0.265,0.047,0.0,0.41,0.0,0.075,-3.981,0.526,0.0,0.031,0.0,0.0,0.0,0.0,0.0,0.0,1.337,0.0,0.777,-3.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-178.12,0.0,0.0,0.0,0.0,751.41,644.89,0.0,0.0,0.0,0.0,0.29,0.0,0.0,0.0,174.74,0.0,29.59,0.0,0.0,0.0,149.63,0.0,0.0,392.5,162.1,163.75,0.0,0.0,211.24,-1854.5,0.0,137.48,0.0,2247.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.81,0.0,0.0,0.0,0.0,148.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2486.0,0.0,2486.0,3027.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4881.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.745,0.0,0.0,0.0,0.0,11.705,10.239,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,3.173,0.0,0.509,0.0,0.0,0.0,2.708,0.0,0.0,2.747,2.712,0.0,0.0,4.567,-37.589,0.0,2.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,16.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.596,59.185,0.0,3.959,41.548,0.76,16.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9864.0,0.0,9768.0,0.0,2856.0,400.0,3256.0,0.0,124.0,0.0,0.0,712.0,4060.0,0.0,0.0,0.0,12112.0,2267.0,4949.0,0.0,148.0,0.0,0.0,1510.0,0.0,0.0,0.0,9767.0,3176.0,4933.0,95.0,32.9,41.849,-0.192,0.0,0.0,0.0,0.0,2.413,3623.5,3623.5,3016.4,13.859,11.527,5.454,2442.0,6.0,0.0,0.0,0.0,1083.34,96.0,-980.07,199.27,21.31,0.0,21.31,15.86,108.0,123.86,0.0,0.0,0.0,344.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1520.09,144.0,-1375.19,288.91,26.57,0.0,26.57,174.91,144.0,318.91,0.0,0.0,0.0,634.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1460.68,390.0,-1321.44,529.24,11.48,0.0,11.48,185.65,132.0,317.65,0.0,0.0,0.0,858.37,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2648.0,0.0,0.0,0.0,90.6,0.0,0.0,9.86,0.0,4.88,4.88,80.0,0.0,1166.1,1166.1,0.0,349.9,15.03,13.38,13.45,2.92,2.05,2.23,0.85,0.29,0.43,14.36,16.82,3.52,2.27,5367.0,3.62
+project_testing-0026.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.142,0.0,-0.008,0.0,1.901,-4.39,-0.106,0.0,0.0,0.0,0.0,0.315,0.0,0.0,0.0,8.681,0.0,2.885,-6.434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.96,0.0,0.0,73.6,0.0,5.9,0.0,0.0,0.0,0.0,0.0,5.95,0.0,0.0,0.0,0.0,0.0,0.0,545.12,100.35,102.64,0.0,90.21,73.88,0.0,0.0,87.64,0.0,545.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,415.82,3173.23,0.0,0.0,0.0,3589.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,4640.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4640.63,0.0,0.0,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,2.189,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,0.0,0.0,0.0,0.0,2.747,2.712,0.0,5.576,4.567,0.0,0.0,2.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.123,16.198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.837,41.837,0.0,20.984,20.984,18.321,0.0,0.0,2.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13063.0,0.0,-162.0,1000.0,838.0,0.0,210.0,0.0,0.0,417.0,4750.0,758.0,0.0,0.0,11220.0,1079.0,4006.0,0.0,232.0,0.0,0.0,2816.0,1370.0,0.0,0.0,13063.0,6562.0,2083.0,82.04,45.68,0.009,3.191,0.0,0.0,0.0,0.0,3.271,1862.6,1277.9,1429.5,4.825,8.578,0.0,0.0,0.0,0.0,0.0,0.0,510.44,105.6,0.0,616.04,500.86,0.0,500.86,0.0,0.0,0.0,0.0,0.0,0.0,1166.28,49.38,0.0,49.38,0.0,0.0,0.0,0.0,0.0,0.0,691.48,108.0,0.0,799.48,355.87,0.0,355.87,0.0,0.0,0.0,0.0,0.0,0.0,1159.15,3.8,0.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,737.98,120.0,0.0,857.98,276.79,0.0,276.79,0.0,0.0,0.0,0.0,0.0,0.0,1172.75,37.98,0.0,37.98,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,7.84,5.23,40.0,0.0,1166.1,1166.1,0.0,174.8,8.85,9.88,9.26,1.19,1.4,1.29,0.3,0.27,0.28,8.64,9.91,1.2,1.44,6729.0,1.86
+project_testing-0027.osw,0,0.0,0.336,0.0,0.003,0.0,6.647,14.716,0.009,0.0,0.0,0.0,0.0,4.651,0.0,0.0,0.0,1.812,0.0,0.891,1.3,0.0,0.403,0.0,-0.003,0.0,43.283,-10.197,0.002,0.0,0.0,0.0,0.0,3.175,0.0,0.0,0.0,4.849,0.0,1.171,-1.261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-313.76,0.0,0.0,0.0,0.0,653.21,441.38,0.0,0.0,66.51,0.0,18.88,0.0,0.0,0.0,0.0,0.0,11.2,0.0,0.0,0.0,0.0,0.0,0.0,27.83,0.0,0.0,0.0,0.0,266.19,-1492.03,0.0,376.25,0.0,1519.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5483.78,0.0,0.0,0.0,0.0,5483.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,13077.24,0.0,0.0,0.0,0.0,0.0,6225.29,1340.33,0.0,0.0,0.0,7565.62,14569.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,0.0,0.0,11.434,7.542,0.0,0.0,1.092,0.0,0.255,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.089,-43.487,0.0,6.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.013,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.48,103.966,0.0,-10.063,33.424,27.993,0.0,42.55,0.0,0.0,0.0,0.0,0.0,0.0,24150.0,0.0,58616.0,0.0,8557.0,600.0,9157.0,0.0,224.0,0.0,0.0,6035.0,4290.0,1407.0,0.0,0.0,14222.0,859.0,1408.0,0.0,419.0,0.0,0.0,48829.0,3802.0,0.0,0.0,58616.0,4168.0,1398.0,87.98,17.6,30.506,41.479,0.0,0.0,0.0,0.0,2.515,3728.4,3640.2,1549.2,19.263,65.883,90.48,619.0,27.0,0.0,0.0,0.0,920.04,435.6,-1023.26,332.38,704.85,0.0,704.85,0.0,0.0,0.0,1811.62,0.0,1811.62,2848.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1958.8,144.0,-2047.27,55.53,999.0,0.0,999.0,0.0,0.0,0.0,1580.2,0.0,1580.2,2634.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1174.52,450.0,-1277.74,346.78,422.91,0.0,422.91,0.0,0.0,0.0,929.04,0.0,929.04,1698.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,2648.0,24.15,0.0,29.31,29.31,30.0,0.0,1166.1,1166.1,0.0,92.0,11.33,10.53,10.97,3.09,1.14,1.73,1.58,0.28,0.49,11.0,10.82,3.6,1.64,3587.0,3.73
+project_testing-0028.osw,0,0.161,0.276,0.0,0.247,0.0,0.213,11.349,0.316,0.0,1.864,0.0,0.0,0.0,0.0,0.0,0.0,5.92,0.0,4.936,7.715,0.265,0.047,0.0,0.41,0.0,0.075,-3.981,0.526,0.0,0.031,0.0,0.0,0.0,0.0,0.0,0.0,1.337,0.0,0.777,-3.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-178.12,0.0,0.0,0.0,0.0,751.41,644.89,0.0,0.0,0.0,0.0,0.29,0.0,0.0,0.0,174.74,0.0,29.59,0.0,0.0,0.0,149.63,0.0,0.0,392.5,162.1,163.75,0.0,0.0,211.24,-1854.5,0.0,137.48,0.0,2247.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.81,0.0,0.0,0.0,0.0,148.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2486.0,0.0,2486.0,3027.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4881.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.745,0.0,0.0,0.0,0.0,11.705,10.239,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,3.173,0.0,0.509,0.0,0.0,0.0,2.708,0.0,0.0,2.747,2.712,0.0,0.0,4.567,-37.589,0.0,2.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,16.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.596,59.185,0.0,3.959,41.548,0.76,16.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9864.0,0.0,9768.0,0.0,2856.0,400.0,3256.0,0.0,124.0,0.0,0.0,712.0,4060.0,0.0,0.0,0.0,12112.0,2267.0,4949.0,0.0,148.0,0.0,0.0,1510.0,0.0,0.0,0.0,9767.0,3176.0,4933.0,95.0,32.9,41.849,-0.192,0.0,0.0,0.0,0.0,2.413,3623.5,3623.5,3016.4,13.859,11.527,5.454,2442.0,6.0,0.0,0.0,0.0,1083.34,366.0,-980.07,469.27,21.31,0.0,21.31,15.86,108.0,123.86,0.0,0.0,0.0,614.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1520.09,144.0,-1375.19,288.91,26.57,0.0,26.57,174.91,144.0,318.91,0.0,0.0,0.0,634.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1460.68,390.0,-1321.44,529.24,11.48,0.0,11.48,185.65,132.0,317.65,0.0,0.0,0.0,858.37,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2648.0,0.0,0.0,0.0,90.6,0.0,0.0,9.86,0.0,4.88,4.88,80.0,0.0,1166.1,1166.1,0.0,349.9,15.03,13.38,13.45,2.92,2.05,2.23,0.85,0.29,0.43,14.36,16.82,3.52,2.27,5367.0,3.62
project_testing-0029.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.221,0.0,0.002,0.0,0.755,-3.158,0.013,0.0,0.557,0.001,0.0,0.0,0.0,0.0,0.0,1.034,0.0,0.867,-0.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.09,0.0,0.0,0.45,0.0,0.0,137.17,0.0,0.2,0.0,0.0,0.0,0.0,1.37,20.03,0.0,0.0,0.0,30.79,0.0,0.0,823.75,0.0,138.57,201.16,0.0,17.88,0.0,56.56,216.48,0.0,823.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.14,0.0,294.6,0.0,0.0,27.44,2.16,0.0,777.6,2103.7,0.0,3224.64,4064.23,0.0,0.0,0.0,0.0,0.0,8.94,0.0,0.0,0.0,0.0,8.94,4064.23,0.0,0.0,0.0,0.0,0.0,6.9,0.0,0.0,0.0,0.0,6.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.059,0.0,0.0,0.016,0.0,0.0,2.431,0.0,0.005,0.0,0.0,0.0,0.0,0.026,0.366,0.0,0.0,0.0,0.57,0.0,0.0,0.0,2.295,3.682,0.0,0.386,0.0,0.968,3.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.0,2.0,0.0,0.0,0.186,0.015,0.0,5.279,14.282,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.617,36.617,0.0,14.641,14.641,0.0,21.892,0.05,0.034,0.0,225.4,0.0,640.5,4876.3,0.0,0.0,2748.0,0.0,628.0,400.0,1028.0,0.0,186.0,0.0,0.0,356.0,4060.0,0.0,0.0,0.0,5739.0,298.0,840.0,0.0,223.0,0.0,0.0,1028.0,0.0,0.0,0.0,2747.0,708.0,789.0,95.0,32.9,0.026,0.087,0.0,3.067,0.0,2.948,0.0,1750.9,1748.1,1750.9,5.852,5.852,0.0,0.0,1.0,0.0,0.0,0.0,381.88,96.0,0.0,477.88,0.0,0.0,0.0,20.58,108.0,128.58,2.14,0.0,2.14,609.01,0.41,0.0,0.41,0.0,0.0,0.0,0.0,0.0,0.0,535.84,144.0,0.0,679.84,0.0,0.0,0.0,226.88,144.0,370.88,1.61,0.0,1.61,1052.85,0.52,0.0,0.52,0.0,0.0,0.0,0.0,0.0,0.0,514.9,120.0,0.0,634.9,0.0,0.0,0.0,240.81,132.0,372.81,1.1,0.0,1.1,1009.33,0.52,0.0,0.52,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,0.0,17.2,0.0,0.0,0.0,0.0,1.37,1.37,0.0,0.0,406.6,406.6,0.0,73.3,14.01,16.57,14.52,0.98,0.96,0.99,0.38,0.33,0.35,17.36,17.91,1.69,1.53,8728.0,1.75
-project_testing-0030.osw,0,-0.0,0.018,0.0,-0.0,0.0,-0.207,3.527,-0.0,0.21,-0.078,0.0,0.0,0.0,0.0,0.0,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023,-0.06,0.0,-0.004,0.016,0.0,0.0,0.0,0.0,0.0,0.0,-0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,28.52,94.11,0.0,182.42,73.6,0.0,0.01,0.0,0.0,0.0,0.0,0.0,3.95,6.92,0.0,73.46,58.49,0.0,0.0,1287.85,188.42,192.72,236.89,0.0,0.0,0.0,51.4,87.95,0.0,1287.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1327.43,0.0,0.0,0.0,0.0,0.0,4.79,0.0,0.0,0.0,0.0,1332.22,6944.43,0.0,0.0,0.0,0.0,0.0,3.74,4320.62,0.0,0.0,0.0,4324.36,6944.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.232,0.0,0.0,0.0,0.847,2.45,0.0,5.053,2.189,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.363,0.149,0.0,2.109,1.65,0.0,0.0,5.159,5.093,6.547,0.0,0.0,0.0,1.876,2.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.012,0.0,0.0,0.0,0.0,0.0,0.033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021,24.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,69.699,69.699,0.0,36.334,36.334,0.0,9.044,24.322,0.0,0.0,0.0,0.0,11341.6,47352.5,569.0,0.0,3571.0,0.0,-292.0,800.0,508.0,0.0,132.0,0.0,0.0,458.0,4520.0,0.0,0.0,0.0,5158.0,48.0,0.0,0.0,146.0,0.0,0.0,2714.0,0.0,0.0,0.0,3571.0,711.0,0.0,82.04,45.68,8.002,0.017,0.0,27.824,0.0,12.864,3.861,3082.4,3082.4,2907.0,5.284,3.303,0.0,350.0,0.0,0.0,0.0,0.0,883.81,105.6,0.0,989.41,0.0,0.0,0.0,8.23,140.4,148.63,743.45,0.0,743.45,1881.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2568.98,144.0,0.0,2712.98,0.0,0.0,0.0,115.66,144.0,259.66,715.66,0.0,715.66,3688.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1277.8,120.0,0.0,1397.8,0.0,0.0,0.0,99.49,132.0,231.49,531.04,0.0,531.04,2160.33,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,52.7,0.0,0.0,0.57,0.0,3.57,0.0,40.0,0.0,489.2,489.2,0.0,0.0,14.37,16.67,15.18,2.42,1.95,2.14,0.83,0.76,0.79,15.45,16.36,2.65,2.1,4455.0,3.08
-project_testing-0031.osw,0,0.0,-0.034,0.0,-0.002,0.0,-0.336,1.312,-0.082,0.0,0.0,0.0,0.0,1.939,0.0,0.0,0.0,-1.59,0.0,-0.414,1.693,0.0,-0.235,0.0,-0.013,0.0,0.79,-2.893,-0.212,0.0,0.0,0.0,0.0,1.323,0.0,0.0,0.0,4.583,0.0,1.056,-3.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,0.0,36.71,0.0,1.29,0.0,0.0,0.0,23.43,0.0,8.73,0.0,0.0,0.0,0.0,0.0,0.0,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.27,0.0,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.43,0.0,0.0,0.0,0.0,144.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,566.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,566.56,0.0,0.0,0.0,0.0,0.0,213.71,0.0,0.0,0.0,0.0,213.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.864,0.0,0.0,0.0,1.092,0.0,0.02,0.0,0.0,0.0,0.622,0.0,0.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.514,8.514,0.0,6.708,6.708,0.737,0.0,0.0,1.069,0.0,0.0,0.0,0.0,0.0,5293.0,0.0,9901.0,0.0,-60.0,800.0,740.0,0.0,315.0,0.0,0.0,154.0,4520.0,4295.0,0.0,0.0,12430.0,748.0,2399.0,0.0,347.0,0.0,0.0,1040.0,3597.0,0.0,0.0,9901.0,3862.0,1054.0,82.04,45.68,2.406,1.104,0.0,0.0,0.0,0.0,1.969,1032.0,1032.0,571.4,5.031,7.57,0.0,1.0,0.0,0.0,0.0,0.0,163.17,105.6,0.0,268.77,20.16,0.0,20.16,0.0,0.0,0.0,0.0,0.0,0.0,309.77,20.84,0.0,20.84,0.0,0.0,0.0,0.0,0.0,0.0,474.3,144.0,0.0,618.3,25.79,0.0,25.79,0.0,0.0,0.0,0.0,0.0,0.0,660.12,16.03,0.0,16.03,0.0,0.0,0.0,0.0,0.0,0.0,235.91,120.0,0.0,355.91,11.14,0.0,11.14,0.0,0.0,0.0,0.0,0.0,0.0,383.08,16.03,0.0,16.03,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,0.0,0.0,2115.0,5.29,0.0,5.94,3.96,80.0,0.0,1535.6,1535.6,0.0,92.2,14.41,13.63,13.2,0.74,0.54,0.56,0.15,0.13,0.14,14.82,13.73,0.91,0.56,4696.0,1.03
+project_testing-0030.osw,0,-0.0,0.018,0.0,-0.0,0.0,-0.207,3.527,-0.0,0.21,-0.078,0.0,0.0,0.0,0.0,0.0,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023,-0.06,0.0,-0.004,0.016,0.0,0.0,0.0,0.0,0.0,0.0,-0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,28.52,94.11,0.0,182.42,73.6,0.0,0.01,0.0,0.0,0.0,0.0,0.0,3.95,6.92,0.0,73.46,58.49,0.0,0.0,1287.85,188.42,192.72,236.89,0.0,0.0,0.0,51.4,87.95,0.0,1287.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1327.43,0.0,0.0,0.0,0.0,0.0,4.79,0.0,0.0,0.0,0.0,1332.22,6944.43,0.0,0.0,0.0,0.0,0.0,3.74,4320.62,0.0,0.0,0.0,4324.36,6944.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.232,0.0,0.0,0.0,0.847,2.45,0.0,5.053,2.189,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.363,0.149,0.0,2.109,1.65,0.0,0.0,5.159,5.093,6.547,0.0,0.0,0.0,1.876,2.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.012,0.0,0.0,0.0,0.0,0.0,0.033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021,24.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,69.699,69.699,0.0,36.334,36.334,0.0,9.044,24.322,0.0,0.0,0.0,0.0,11341.6,47352.5,569.0,0.0,3571.0,0.0,-292.0,800.0,508.0,0.0,132.0,0.0,0.0,458.0,4520.0,0.0,0.0,0.0,5158.0,48.0,0.0,0.0,146.0,0.0,0.0,2714.0,0.0,0.0,0.0,3571.0,711.0,0.0,82.04,45.68,8.002,0.017,0.0,27.824,0.0,12.864,3.861,3082.4,3082.4,2907.0,5.284,3.303,0.0,350.0,0.0,0.0,0.0,0.0,883.81,105.6,0.0,989.41,0.0,0.0,0.0,8.23,140.4,148.63,743.45,0.0,743.45,1881.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1276.28,108.0,0.0,1384.28,0.0,0.0,0.0,10.67,97.2,107.87,955.87,0.0,955.87,2448.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1277.8,120.0,0.0,1397.8,0.0,0.0,0.0,99.49,132.0,231.49,531.04,0.0,531.04,2160.33,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,52.7,0.0,0.0,0.57,0.0,3.57,0.0,40.0,0.0,489.2,489.2,0.0,0.0,14.37,16.67,15.18,2.42,1.95,2.14,0.83,0.76,0.79,15.45,16.36,2.65,2.1,4455.0,3.08
+project_testing-0031.osw,0,0.0,-0.034,0.0,-0.002,0.0,-0.336,1.312,-0.082,0.0,0.0,0.0,0.0,1.939,0.0,0.0,0.0,-1.59,0.0,-0.414,1.693,0.0,-0.235,0.0,-0.013,0.0,0.79,-2.893,-0.212,0.0,0.0,0.0,0.0,1.323,0.0,0.0,0.0,4.583,0.0,1.056,-3.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.99,0.0,0.0,0.0,36.71,0.0,1.29,0.0,0.0,0.0,23.43,0.0,8.73,0.0,0.0,0.0,0.0,0.0,0.0,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.27,0.0,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.43,0.0,0.0,0.0,0.0,144.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,566.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,566.56,0.0,0.0,0.0,0.0,0.0,213.71,0.0,0.0,0.0,0.0,213.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.864,0.0,0.0,0.0,1.092,0.0,0.02,0.0,0.0,0.0,0.622,0.0,0.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.514,8.514,0.0,6.708,6.708,0.737,0.0,0.0,1.069,0.0,0.0,0.0,0.0,0.0,5293.0,0.0,9901.0,0.0,-60.0,800.0,740.0,0.0,315.0,0.0,0.0,154.0,4520.0,4295.0,0.0,0.0,12430.0,748.0,2399.0,0.0,347.0,0.0,0.0,1040.0,3597.0,0.0,0.0,9901.0,3862.0,1054.0,82.04,45.68,2.406,1.104,0.0,0.0,0.0,0.0,1.969,1032.0,1032.0,571.4,5.031,7.57,0.0,1.0,0.0,0.0,0.0,0.0,163.17,105.6,0.0,268.77,20.16,0.0,20.16,0.0,0.0,0.0,0.0,0.0,0.0,309.77,20.84,0.0,20.84,0.0,0.0,0.0,0.0,0.0,0.0,182.63,108.0,0.0,290.63,14.32,0.0,14.32,0.0,0.0,0.0,0.0,0.0,0.0,306.55,1.6,0.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,235.91,120.0,0.0,355.91,11.14,0.0,11.14,0.0,0.0,0.0,0.0,0.0,0.0,383.08,16.03,0.0,16.03,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,0.0,0.0,2115.0,5.29,0.0,5.94,3.96,80.0,0.0,1535.6,1535.6,0.0,92.2,14.41,13.63,13.2,0.74,0.54,0.56,0.15,0.13,0.14,14.82,13.73,0.91,0.56,4696.0,1.03
project_testing-0032.osw,0,0.0,0.021,-0.292,-2.629,0.0,-2.018,16.991,2.352,1.224,-0.036,-0.015,0.0,4.358,0.0,0.0,0.0,1.209,0.0,-0.284,0.87,0.0,0.893,24.004,14.569,0.0,36.886,-28.947,3.926,-2.663,1.424,0.001,0.0,17.052,0.0,0.0,0.0,9.541,0.0,2.81,-3.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.41,873.55,232.79,42.77,312.37,66.51,0.0,58.66,0.0,0.0,0.0,0.0,0.0,11.83,16.99,0.0,306.33,4.23,0.0,0.0,6132.09,0.0,421.4,2043.07,589.47,643.65,0.0,6.48,318.92,0.0,6132.09,171.66,0.0,0.0,0.0,0.0,0.0,0.0,9157.84,0.0,0.0,0.0,0.0,9157.84,0.0,1709.45,0.0,841.82,0.0,9672.94,1396.48,514.3,0.0,2221.96,0.0,487.45,16844.39,32134.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32134.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.15,11.704,3.228,0.664,5.053,1.092,0.0,1.009,0.0,0.0,0.0,0.0,0.0,0.308,0.237,0.0,4.702,0.075,0.0,0.0,0.0,6.559,32.791,13.484,14.723,0.0,0.113,5.236,0.0,2.599,0.0,0.0,0.0,0.0,0.0,0.0,46.748,0.0,0.0,0.0,0.0,0.0,11.605,0.0,5.715,0.0,65.668,9.481,3.491,0.0,15.085,0.0,3.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264.83,264.83,0.0,103.728,103.728,46.748,114.354,0.0,0.0,0.0,0.0,1389.8,2817.9,10506.2,11558.0,0.0,48756.0,0.0,3455.0,1000.0,4455.0,0.0,224.0,0.0,1304.0,2437.0,4750.0,2619.0,0.0,0.0,15664.0,1836.0,2494.0,0.0,419.0,10774.0,5265.0,19716.0,7077.0,0.0,0.0,48757.0,4102.0,1404.0,87.98,17.6,27.77,82.81,0.0,7.958,0.0,4.681,4.06,6836.2,6836.2,6104.3,18.493,50.604,0.0,599.0,455.0,0.0,0.0,0.0,2857.56,105.6,0.0,2963.16,1177.1,0.0,1177.1,107.49,118.8,226.29,0.0,0.0,0.0,4366.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6083.86,144.0,0.0,6227.86,1668.32,0.0,1668.32,1627.4,144.0,1771.4,0.0,0.0,0.0,9667.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3647.95,120.0,0.0,3767.95,706.26,0.0,706.26,1257.9,132.0,1389.9,0.0,0.0,0.0,5864.11,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,1015.68,0.0,0.0,6348.0,0.0,6348.0,6348.0,0.0,256.4,6348.0,11.56,0.0,29.77,18.99,40.0,0.0,950.2,950.2,950.2,57.0,14.82,9.81,9.85,5.19,5.21,4.62,3.11,1.67,2.24,13.91,10.0,6.12,5.89,5507.0,6.84
project_testing-0033.osw,0,0.0,0.152,0.0,-0.0,0.0,0.954,9.813,-2.326,0.0,0.782,0.0,0.0,57.726,0.0,0.0,0.0,4.529,0.0,0.82,7.704,0.0,0.286,0.0,60.285,0.0,15.294,-7.232,-2.341,0.0,8.057,0.0,0.0,78.911,0.0,0.0,0.0,10.575,0.0,15.441,-6.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,644.39,878.61,230.37,0.0,0.0,194.47,0.0,12.27,0.0,0.0,0.0,164.21,0.0,15.76,0.0,0.0,0.0,36.21,0.0,0.0,2670.18,0.0,178.78,0.0,0.0,0.0,0.0,0.0,315.11,0.0,2670.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26522.22,0.0,0.0,0.0,0.0,26522.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,942.65,0.0,0.0,942.65,51565.56,0.0,0.0,0.0,0.0,0.0,21430.51,0.0,0.0,0.0,0.0,21430.51,51565.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,13.093,17.579,3.751,0.0,0.0,3.193,0.0,0.173,0.0,0.0,0.0,2.648,0.0,0.299,0.0,0.0,0.0,0.586,0.0,0.0,0.0,2.783,0.0,0.0,0.0,0.0,0.0,5.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135.387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,311.597,311.597,0.0,49.279,49.279,135.387,6.4,120.532,0.0,0.0,0.0,0.0,0.0,0.0,78687.0,0.0,110075.0,0.0,2479.0,800.0,3279.0,0.0,112.0,0.0,7482.0,1748.0,4520.0,34424.0,0.0,0.0,58532.0,3590.0,6656.0,0.0,210.0,0.0,32725.0,12997.0,46877.0,0.0,0.0,110076.0,7117.0,10150.0,87.98,17.6,84.031,177.726,0.0,0.0,0.0,0.0,1.902,8586.9,8586.9,1827.7,68.753,111.854,0.0,933.0,583.0,0.0,0.0,0.0,1357.57,105.6,0.0,1463.17,3409.01,0.0,3409.01,6.02,118.8,124.82,5131.8,0.0,5131.8,10128.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2890.33,144.0,0.0,3034.33,4831.66,0.0,4831.66,91.07,144.0,235.07,4476.26,0.0,4476.26,12577.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1733.07,120.0,0.0,1853.07,2045.41,0.0,2045.41,70.39,132.0,202.39,2631.69,0.0,2631.69,6732.56,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,3310.0,0.0,0.0,3310.0,56.0,0.0,3310.0,78.69,0.0,66.05,44.03,66.0,0.0,1921.2,1921.2,0.0,230.6,14.09,12.96,13.29,7.13,1.58,4.17,0.94,0.35,0.37,13.45,13.18,8.36,2.49,4908.0,8.59
-project_testing-0034.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-29.67,24.1,0.0,0.0,0.0,0.0,44.23,76.29,0.0,265.59,0.0,0.0,0.0,0.0,0.0,619.74,0.0,52.06,246.92,0.0,2637.63,24.35,0.0,0.0,9330.31,0.0,0.0,6393.8,0.0,0.0,-1711.99,0.0,289.04,0.0,11042.3,398.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,1012.47,0.0,498.59,0.0,0.0,0.0,3.66,0.0,0.0,0.0,0.0,1514.72,10845.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12557.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.201,0.093,0.0,0.0,0.0,0.0,0.183,0.307,0.0,1.092,0.0,0.0,0.0,0.0,0.0,2.272,0.0,0.325,0.881,0.0,10.406,0.093,0.0,0.0,0.0,0.0,25.87,0.0,0.0,-11.04,0.0,1.188,0.0,1.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,6.874,0.0,3.385,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.694,54.734,0.0,33.411,44.451,0.0,10.283,0.0,0.0,0.0,0.0,669.8,3635.4,9978.4,0.0,0.0,0.0,0.0,6328.0,1200.0,7528.0,0.0,564.0,0.0,0.0,4474.0,4980.0,0.0,0.0,0.0,11393.0,326.0,1050.0,0.0,1252.0,0.0,0.0,41508.0,0.0,0.0,0.0,45466.0,1039.0,1667.0,89.6,4.28,0.075,-0.227,0.0,7.778,0.0,4.593,1.934,4518.5,2525.5,4518.5,4.178,0.0,0.537,0.0,0.0,0.0,0.0,0.0,1133.36,118.8,-281.48,970.68,0.0,0.0,0.0,9.36,104.4,113.76,0.0,0.0,0.0,1084.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1863.05,144.0,-462.71,1544.35,0.0,0.0,0.0,91.44,144.0,235.44,0.0,0.0,0.0,1779.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1563.25,210.0,-388.25,1385.0,0.0,0.0,0.0,113.12,132.0,245.12,0.0,0.0,0.0,1630.12,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,335.8,335.8,0.0,30.2,19.15,18.46,18.8,2.12,3.0,2.38,0.9,0.91,0.9,19.09,18.55,2.5,4.23,547.0,4.52
+project_testing-0034.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-29.67,24.1,0.0,0.0,0.0,0.0,44.23,76.29,0.0,265.59,0.0,0.0,0.0,0.0,0.0,619.74,0.0,52.06,246.92,0.0,2637.63,24.35,0.0,0.0,9330.31,0.0,0.0,6393.8,0.0,0.0,-1711.99,0.0,289.04,0.0,11042.3,398.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,1012.47,0.0,498.59,0.0,0.0,0.0,3.66,0.0,0.0,0.0,0.0,1514.72,10845.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12557.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.201,0.093,0.0,0.0,0.0,0.0,0.183,0.307,0.0,1.092,0.0,0.0,0.0,0.0,0.0,2.272,0.0,0.325,0.881,0.0,10.406,0.093,0.0,0.0,0.0,0.0,25.87,0.0,0.0,-11.04,0.0,1.188,0.0,1.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,6.874,0.0,3.385,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.694,54.734,0.0,33.411,44.451,0.0,10.283,0.0,0.0,0.0,0.0,669.8,3635.4,9978.4,0.0,0.0,0.0,0.0,6328.0,1200.0,7528.0,0.0,564.0,0.0,0.0,4474.0,4980.0,0.0,0.0,0.0,11393.0,326.0,1050.0,0.0,1252.0,0.0,0.0,41508.0,0.0,0.0,0.0,45466.0,1039.0,1667.0,89.6,4.28,0.075,-0.227,0.0,7.778,0.0,4.593,1.934,4518.5,2525.5,4518.5,4.178,0.0,0.537,0.0,0.0,0.0,0.0,0.0,1133.36,208.8,-281.48,1060.68,0.0,0.0,0.0,9.36,104.4,113.76,0.0,0.0,0.0,1174.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1863.05,144.0,-462.71,1544.35,0.0,0.0,0.0,91.44,144.0,235.44,0.0,0.0,0.0,1779.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1563.25,210.0,-388.25,1385.0,0.0,0.0,0.0,113.12,132.0,245.12,0.0,0.0,0.0,1630.12,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,0.0,335.8,335.8,0.0,30.2,19.15,18.46,18.8,2.12,3.0,2.38,0.9,0.91,0.9,19.09,18.55,2.5,4.23,547.0,4.52
project_testing-0035.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.88,0.0,0.0,0.0,0.0,1311.55,182.71,0.0,776.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.61,52.71,0.0,729.12,19.9,0.0,0.0,7144.01,1316.51,1317.49,672.4,0.0,0.0,0.0,594.67,0.0,0.0,7144.01,67.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,669.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,669.13,10047.71,0.0,0.0,0.0,0.0,0.0,0.0,2234.58,0.0,0.0,0.0,2234.58,10047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.0,0.0,0.0,0.0,5.26,0.74,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.188,0.0,2.863,0.075,0.0,0.0,5.281,5.213,2.718,0.0,0.0,0.0,2.639,0.0,0.0,0.262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.068,46.068,0.0,28.957,28.957,0.0,4.543,12.568,0.0,0.0,0.0,1546.1,5566.5,22020.2,0.0,0.0,0.0,0.0,1435.0,800.0,2235.0,0.0,423.0,0.0,0.0,1014.0,3320.0,0.0,0.0,0.0,15984.0,8373.0,2854.0,0.0,939.0,0.0,0.0,9411.0,0.0,0.0,0.0,33041.0,18186.0,4505.0,89.6,4.28,0.237,-9.368,0.0,16.884,0.0,7.404,0.0,3397.2,3100.3,3264.4,5.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,738.33,118.8,0.0,857.13,0.0,0.0,0.0,4.13,104.4,108.53,466.5,0.0,466.5,1432.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1213.69,144.0,0.0,1357.69,0.0,0.0,0.0,40.4,144.0,184.4,290.34,0.0,290.34,1832.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1018.38,120.0,0.0,1138.38,0.0,0.0,0.0,49.97,132.0,181.97,274.41,0.0,274.41,1594.76,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1166.1,1166.1,0.0,139.9,13.37,15.1,12.12,2.08,2.09,2.06,0.43,0.48,0.42,12.45,17.0,2.66,3.06,2367.0,3.4
-project_testing-0036.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-50.76,4.3,0.0,0.0,0.0,0.0,37.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146.65,39.69,3.99,7.28,0.0,66.65,1.83,0.0,0.0,1141.57,95.9,98.09,786.08,0.0,0.0,-123.82,2.38,0.0,0.0,1265.39,26.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,203.26,0.0,0.0,0.0,0.0,203.26,1766.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,421.51,421.51,1890.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.596,0.116,0.0,0.0,0.0,0.0,0.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.477,1.494,0.339,0.157,0.0,2.109,0.056,0.0,0.0,2.626,2.592,22.023,0.0,0.0,-14.348,0.081,0.0,0.0,0.688,0.0,0.0,0.0,0.0,0.0,0.0,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.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,2.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.564,40.912,0.0,22.813,37.161,0.0,1.38,2.371,0.0,0.0,0.0,0.0,1007.0,8460.3,0.0,0.0,0.0,0.0,-85.0,400.0,315.0,0.0,88.0,0.0,148.0,218.0,2860.0,481.0,0.0,0.0,5705.0,945.0,964.0,0.0,97.0,0.0,511.0,1471.0,870.0,0.0,0.0,7955.0,4219.0,786.0,82.04,45.68,0.622,-0.975,0.0,4.679,0.0,4.433,0.644,9829.7,2811.8,9829.7,4.876,0.0,1.352,0.0,0.0,0.0,0.0,0.0,903.93,105.6,-349.0,660.53,0.0,0.0,0.0,1.26,140.4,141.66,72.47,0.0,72.47,874.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2627.45,144.0,-1014.44,1757.01,0.0,0.0,0.0,17.65,144.0,161.65,69.76,0.0,69.76,1988.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1306.88,210.0,-504.58,1012.3,0.0,0.0,0.0,15.18,132.0,147.18,51.76,0.0,51.76,1211.24,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1682.0,0.0,1682.0,1682.0,0.0,132.0,1682.0,0.0,0.0,0.0,0.0,30.0,0.0,929.4,929.4,929.4,111.4,14.56,12.79,13.21,1.8,2.68,2.26,0.84,0.82,0.83,13.18,12.0,2.12,3.3,470.0,9.83
-project_testing-0037.osw,0,8.179,1.135,0.0,0.53,0.0,9.0,17.944,-0.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.529,0.0,5.792,10.801,4.428,0.412,0.0,1.037,0.0,12.441,-3.765,-0.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.243,0.0,5.719,-3.343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1877.05,431.24,0.0,0.0,123.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.81,0.0,0.0,0.0,0.0,0.0,0.0,517.72,0.0,111.66,0.0,0.0,0.0,-2330.7,0.0,284.17,0.0,2848.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,626.57,0.0,0.0,626.57,6427.85,0.0,0.0,0.0,0.0,0.0,530.82,0.0,0.0,0.0,0.0,530.82,8758.55,0.0,0.0,0.0,0.0,0.0,4752.74,0.0,0.0,0.0,0.0,4752.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,27.926,7.001,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.0,-44.897,0.0,5.037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.447,75.343,0.0,-0.556,44.34,0.0,4.254,2.986,23.764,0.0,0.0,0.0,0.0,0.0,38863.0,0.0,33787.0,0.0,7454.0,400.0,7854.0,8355.0,443.0,0.0,408.0,5587.0,4060.0,0.0,0.0,0.0,28477.0,2238.0,7386.0,5683.0,530.0,0.0,1008.0,16580.0,0.0,0.0,0.0,33786.0,3907.0,6079.0,95.0,32.9,57.654,17.355,0.0,0.0,0.0,0.0,0.0,5253.3,5253.3,2292.9,28.94,34.043,0.0,182.0,22.0,0.0,0.0,0.0,1156.54,96.0,-1161.43,91.11,0.0,0.0,0.0,4.0,108.0,112.0,127.11,0.0,127.11,615.38,285.16,0.0,285.16,0.0,0.0,0.0,0.0,0.0,0.0,1622.8,144.0,-1627.69,139.11,0.0,0.0,0.0,44.08,144.0,188.08,95.65,0.0,95.65,779.3,356.46,0.0,356.46,0.0,0.0,0.0,0.0,0.0,0.0,1559.38,510.0,-1565.09,504.29,0.0,0.0,0.0,46.79,132.0,178.79,65.19,0.0,65.19,1104.73,356.46,0.0,356.46,0.0,0.0,0.0,False,30.0,0.0,614.0,0.0,1228.0,0.0,0.0,1228.0,0.0,0.0,686.4,38.86,0.0,30.41,3.38,0.0,0.0,1654.8,1740.0,0.0,297.9,13.68,14.51,13.12,3.37,0.54,1.42,1.27,0.22,0.33,14.73,6.55,4.73,0.9,5175.0,5.25
+project_testing-0036.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-50.76,4.3,0.0,0.0,0.0,0.0,37.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146.65,39.69,3.99,7.28,0.0,66.65,1.83,0.0,0.0,1141.57,95.9,98.09,786.08,0.0,0.0,-123.82,2.38,0.0,0.0,1265.39,26.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,203.26,0.0,0.0,0.0,0.0,203.26,1766.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,421.51,421.51,1890.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.596,0.116,0.0,0.0,0.0,0.0,0.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.477,1.494,0.339,0.157,0.0,2.109,0.056,0.0,0.0,2.626,2.592,22.023,0.0,0.0,-14.348,0.081,0.0,0.0,0.688,0.0,0.0,0.0,0.0,0.0,0.0,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.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,2.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.564,40.912,0.0,22.813,37.161,0.0,1.38,2.371,0.0,0.0,0.0,0.0,1007.0,8460.3,0.0,0.0,0.0,0.0,-85.0,400.0,315.0,0.0,88.0,0.0,148.0,218.0,2860.0,481.0,0.0,0.0,5705.0,945.0,964.0,0.0,97.0,0.0,511.0,1471.0,870.0,0.0,0.0,7955.0,4219.0,786.0,82.04,45.68,0.622,-0.975,0.0,4.679,0.0,4.433,0.644,9829.7,2811.8,9829.7,4.876,0.0,1.352,0.0,0.0,0.0,0.0,0.0,903.93,195.6,-504.58,594.95,0.0,0.0,0.0,1.26,140.4,141.66,72.47,0.0,72.47,809.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1307.79,198.0,-504.58,1001.21,0.0,0.0,0.0,1.63,97.2,98.83,93.17,0.0,93.17,1193.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1306.88,210.0,-504.58,1012.3,0.0,0.0,0.0,15.18,132.0,147.18,51.76,0.0,51.76,1211.24,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1682.0,0.0,1682.0,1682.0,0.0,132.0,1682.0,0.0,0.0,0.0,0.0,30.0,0.0,929.4,929.4,929.4,111.4,14.56,12.79,13.21,1.8,2.68,2.26,0.84,0.82,0.83,13.18,12.0,2.12,3.3,470.0,9.83
+project_testing-0037.osw,0,8.179,1.135,0.0,0.53,0.0,9.0,17.944,-0.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.529,0.0,5.792,10.801,4.428,0.412,0.0,1.037,0.0,12.441,-3.765,-0.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.243,0.0,5.719,-3.343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1877.05,431.24,0.0,0.0,123.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.81,0.0,0.0,0.0,0.0,0.0,0.0,517.72,0.0,111.66,0.0,0.0,0.0,-2330.7,0.0,284.17,0.0,2848.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,626.57,0.0,0.0,626.57,6427.85,0.0,0.0,0.0,0.0,0.0,530.82,0.0,0.0,0.0,0.0,530.82,8758.55,0.0,0.0,0.0,0.0,0.0,4752.74,0.0,0.0,0.0,0.0,4752.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,27.926,7.001,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.0,-44.897,0.0,5.037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.447,75.343,0.0,-0.556,44.34,0.0,4.254,2.986,23.764,0.0,0.0,0.0,0.0,0.0,38863.0,0.0,33787.0,0.0,7454.0,400.0,7854.0,8355.0,443.0,0.0,408.0,5587.0,4060.0,0.0,0.0,0.0,28477.0,2238.0,7386.0,5683.0,530.0,0.0,1008.0,16580.0,0.0,0.0,0.0,33786.0,3907.0,6079.0,95.0,32.9,57.654,17.355,0.0,0.0,0.0,0.0,0.0,5253.3,5253.3,2292.9,28.94,34.043,0.0,182.0,22.0,0.0,0.0,0.0,1156.54,486.0,-1171.05,471.49,0.0,0.0,0.0,4.0,108.0,112.0,127.11,0.0,127.11,995.76,285.16,0.0,285.16,0.0,0.0,0.0,0.0,0.0,0.0,1622.8,144.0,-1627.69,139.11,0.0,0.0,0.0,44.08,144.0,188.08,95.65,0.0,95.65,779.3,356.46,0.0,356.46,0.0,0.0,0.0,0.0,0.0,0.0,1559.38,510.0,-1565.09,504.29,0.0,0.0,0.0,46.79,132.0,178.79,65.19,0.0,65.19,1104.73,356.46,0.0,356.46,0.0,0.0,0.0,False,30.0,0.0,614.0,0.0,1228.0,0.0,0.0,1228.0,0.0,0.0,686.4,38.86,0.0,30.41,3.38,0.0,0.0,1654.8,1740.0,0.0,297.9,13.68,14.51,13.12,3.37,0.54,1.42,1.27,0.22,0.33,14.73,6.55,4.73,0.9,5175.0,5.25
project_testing-0038.osw,0,-0.002,-0.053,0.0,-0.004,0.0,-0.013,16.325,-0.13,0.0,-1.966,0.0,0.0,0.0,0.0,0.0,0.0,-1.319,0.0,-1.117,1.64,-0.004,1.007,0.0,-0.006,0.0,0.097,-12.321,-0.117,0.0,7.601,0.0,0.0,0.0,0.0,0.0,0.0,9.079,0.0,3.575,-1.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.16,0.0,0.0,521.07,836.84,784.01,128.52,1559.1,265.59,0.0,77.71,0.0,0.0,0.0,0.0,0.0,46.79,0.0,0.0,0.0,115.94,0.0,0.0,7740.01,876.66,877.31,427.13,0.0,0.0,0.0,22.86,937.85,0.0,7740.01,238.43,0.0,0.0,0.0,0.0,0.0,0.0,1351.97,895.53,0.0,0.0,0.0,2247.5,0.0,904.81,0.0,445.57,0.0,575.53,0.0,0.0,0.0,0.0,0.0,0.0,1925.91,12418.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,504.65,504.65,12418.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,0.0,0.0,2.198,3.461,3.042,0.511,6.319,1.092,0.0,0.268,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,0.0,0.477,0.0,0.0,3.516,3.472,1.718,0.0,0.0,0.0,0.097,3.856,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,6.901,4.571,0.0,0.0,0.0,0.0,6.143,0.0,3.025,0.0,3.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.726,58.726,0.0,31.34,31.34,11.473,13.075,2.838,0.0,0.0,0.0,1069.8,2298.7,7464.3,14267.0,0.0,9978.0,0.0,905.0,400.0,1305.0,0.0,282.0,0.0,0.0,640.0,4060.0,0.0,0.0,0.0,8796.0,2271.0,1543.0,0.0,626.0,0.0,0.0,2916.0,0.0,0.0,0.0,9978.0,4448.0,1988.0,89.6,4.28,13.443,7.696,0.0,6.065,0.0,5.674,3.8,3584.2,3251.4,1748.2,11.959,11.116,0.0,0.0,0.0,0.0,0.0,0.0,799.09,118.8,0.0,917.89,280.63,0.0,280.63,11.9,104.4,116.3,105.35,0.0,105.35,1420.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1313.58,144.0,0.0,1457.58,366.33,0.0,366.33,116.27,144.0,260.27,65.57,0.0,65.57,2149.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1102.2,120.0,0.0,1222.2,173.33,0.0,173.33,143.82,132.0,275.82,61.97,0.0,61.97,1733.32,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,0.0,40.4,0.0,0.0,14.27,0.0,6.99,2.99,30.0,0.0,662.2,662.2,0.0,39.8,15.84,15.25,15.22,2.47,1.38,1.63,1.09,0.6,0.62,15.91,14.27,3.11,1.88,5967.0,3.58
-project_testing-0039.osw,0,0.0,0.021,0.0,-0.013,0.0,-0.012,3.396,-0.247,0.0,0.11,0.0,0.0,4.314,0.0,0.0,0.0,-0.912,0.0,-0.032,0.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.62,55.75,148.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.19,0.0,0.0,0.0,56.32,0.0,0.0,625.46,75.32,77.03,0.0,0.0,73.93,0.0,0.0,129.85,0.0,625.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1751.08,0.0,0.0,0.0,0.0,0.0,0.0,1125.62,0.0,0.0,0.0,1125.62,1751.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032,2.568,3.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,0.0,1.56,0.0,0.0,2.062,2.036,0.0,0.0,4.57,0.0,0.0,3.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.182,27.182,0.0,20.851,20.851,0.0,0.0,6.331,0.0,0.0,0.0,0.0,0.0,0.0,3509.0,0.0,0.0,0.0,-178.0,600.0,422.0,0.0,88.0,0.0,0.0,169.0,4290.0,3167.0,0.0,0.0,8851.0,108.0,1028.0,0.0,97.0,0.0,0.0,765.0,2713.0,0.0,0.0,9605.0,5314.0,715.0,82.04,45.68,9.37,-2.673,0.0,0.0,0.0,0.0,4.071,1793.7,1636.5,1413.6,6.512,0.0,0.0,42.0,0.0,0.0,0.0,0.0,507.19,105.6,0.0,612.79,0.0,0.0,0.0,0.0,0.0,0.0,193.52,0.0,193.52,806.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1474.26,144.0,0.0,1618.26,0.0,0.0,0.0,0.0,0.0,0.0,186.29,0.0,186.29,1804.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,733.29,120.0,0.0,853.29,0.0,0.0,0.0,0.0,0.0,0.0,138.23,0.0,138.23,991.52,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,52.2,0.0,1138.0,3.51,0.0,0.0,0.0,30.0,0.0,1126.6,1126.6,0.0,101.4,14.74,8.58,11.17,1.39,1.12,1.13,0.54,0.26,0.36,14.82,9.82,1.5,1.29,6183.0,1.79
+project_testing-0039.osw,0,0.0,0.021,0.0,-0.013,0.0,-0.012,3.396,-0.247,0.0,0.11,0.0,0.0,4.314,0.0,0.0,0.0,-0.912,0.0,-0.032,0.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.62,55.75,148.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.19,0.0,0.0,0.0,56.32,0.0,0.0,625.46,75.32,77.03,0.0,0.0,73.93,0.0,0.0,129.85,0.0,625.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1751.08,0.0,0.0,0.0,0.0,0.0,0.0,1125.62,0.0,0.0,0.0,1125.62,1751.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032,2.568,3.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,0.0,1.56,0.0,0.0,2.062,2.036,0.0,0.0,4.57,0.0,0.0,3.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.182,27.182,0.0,20.851,20.851,0.0,0.0,6.331,0.0,0.0,0.0,0.0,0.0,0.0,3509.0,0.0,0.0,0.0,-178.0,600.0,422.0,0.0,88.0,0.0,0.0,169.0,4290.0,3167.0,0.0,0.0,8851.0,108.0,1028.0,0.0,97.0,0.0,0.0,765.0,2713.0,0.0,0.0,9605.0,5314.0,715.0,82.04,45.68,9.37,-2.673,0.0,0.0,0.0,0.0,4.071,1793.7,1636.5,1413.6,6.512,0.0,0.0,42.0,0.0,0.0,0.0,0.0,507.19,105.6,0.0,612.79,0.0,0.0,0.0,0.0,0.0,0.0,193.52,0.0,193.52,806.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,686.4,108.0,0.0,794.4,0.0,0.0,0.0,0.0,0.0,0.0,248.81,0.0,248.81,1043.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,733.29,120.0,0.0,853.29,0.0,0.0,0.0,0.0,0.0,0.0,138.23,0.0,138.23,991.52,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,52.2,0.0,1138.0,3.51,0.0,0.0,0.0,30.0,0.0,1126.6,1126.6,0.0,101.4,14.74,8.58,11.17,1.39,1.12,1.13,0.54,0.26,0.36,14.82,9.82,1.5,1.29,6183.0,1.79
project_testing-0040.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.577,0.444,25.466,5.912,0.0,44.858,-36.548,-1.739,-3.152,1.444,0.124,0.0,0.0,0.0,0.0,0.0,13.084,0.0,8.372,-4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35,528.45,19.75,0.0,0.0,282.74,57.36,0.0,137.17,0.0,74.27,0.0,0.0,0.0,0.0,0.0,20.1,23.63,0.0,318.53,3.91,0.0,0.0,3298.14,0.0,414.24,867.12,0.0,0.0,0.0,158.57,220.32,0.0,3298.14,153.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,1788.36,0.0,0.0,0.0,0.0,2429.22,0.0,0.0,2324.53,0.0,0.0,6542.11,25160.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25160.25,0.0,0.0,0.0,0.0,0.0,15320.0,0.0,0.0,0.0,0.0,15320.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,9.919,0.371,0.0,0.0,5.101,0.976,0.0,2.431,0.0,1.811,0.0,0.0,0.0,0.0,0.0,0.388,0.417,0.0,5.629,0.075,0.0,0.0,0.0,6.862,15.853,0.0,0.0,0.0,2.958,3.905,0.0,2.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.141,0.0,0.0,0.0,0.0,16.492,0.0,0.0,15.781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.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,180.753,180.753,0.0,59.74,59.74,0.0,44.414,0.0,76.6,0.0,5097.5,2127.0,6528.9,32818.9,0.0,0.0,83899.0,0.0,13546.0,800.0,14346.0,1191.0,186.0,0.0,889.0,10154.0,4520.0,0.0,0.0,0.0,29318.0,4467.0,7912.0,982.0,223.0,39978.0,2198.0,30130.0,0.0,0.0,0.0,83899.0,6070.0,4318.0,95.0,32.9,0.546,58.426,0.0,19.901,0.0,9.88,2.751,11820.2,11466.1,11702.8,5.845,85.602,0.0,0.0,249.0,0.0,0.0,0.0,1558.21,96.0,0.0,1654.21,0.0,0.0,0.0,41.75,108.0,149.75,0.0,0.0,0.0,2723.16,919.2,0.0,919.2,0.0,0.0,0.0,0.0,0.0,0.0,2186.41,144.0,0.0,2330.41,0.0,0.0,0.0,460.29,144.0,604.29,0.0,0.0,0.0,4083.7,1149.0,0.0,1149.0,0.0,0.0,0.0,0.0,0.0,0.0,2100.96,120.0,0.0,2220.96,0.0,0.0,0.0,488.55,132.0,620.55,0.0,0.0,0.0,3990.51,1149.0,0.0,1149.0,0.0,0.0,0.0,False,30.0,743.15,1339.0,0.0,2678.0,0.0,0.0,2678.0,0.0,0.0,1497.0,0.0,0.0,83.9,0.0,40.0,0.0,2443.8,2629.8,0.0,401.3,12.43,14.19,13.81,6.59,6.83,6.42,0.95,0.96,0.95,10.45,17.45,11.17,10.7,6222.0,11.82
-project_testing-0041.osw,0,0.0,0.005,0.588,-0.0,0.0,-0.021,3.929,0.121,0.752,-0.13,0.0,0.0,0.097,0.0,0.0,0.0,0.087,0.0,0.188,3.492,0.0,0.228,-0.432,0.269,0.0,0.413,-10.576,1.219,-3.842,2.274,0.0,0.0,-0.173,0.0,0.0,0.0,1.674,0.0,4.463,-1.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-314.0,0.0,0.0,0.0,8.35,94.09,112.98,0.0,0.0,36.71,0.0,0.0,0.0,0.0,0.0,10.06,45.07,4.67,39.92,0.0,376.33,51.79,0.0,0.0,1619.2,120.87,123.63,1238.1,0.0,88.99,-602.61,0.0,178.0,0.0,2221.8,6.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.16,0.0,0.0,0.0,3.07,0.0,0.0,0.0,0.0,15.24,1634.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2237.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.765,0.0,0.0,0.0,0.373,4.218,4.688,0.0,0.0,1.092,0.0,0.0,0.0,0.0,0.0,0.273,1.495,0.346,0.86,0.0,11.361,1.418,0.0,0.0,3.309,3.267,34.59,0.0,5.501,-61.144,0.0,5.294,0.0,0.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.973,79.116,0.0,17.869,79.013,0.0,0.103,0.0,0.0,0.0,0.0,0.0,649.1,6402.5,4852.0,0.0,25347.0,0.0,-441.0,1200.0,759.0,0.0,315.0,1864.0,135.0,1133.0,4980.0,353.0,0.0,0.0,24461.0,85.0,15596.0,0.0,347.0,7615.0,468.0,5097.0,638.0,0.0,0.0,25347.0,3049.0,8133.0,82.04,45.68,17.319,0.363,0.0,4.13,0.0,4.058,0.0,6081.2,4497.4,6081.2,7.39,3.981,2.062,408.0,0.0,0.0,0.0,0.0,1921.71,105.6,-1487.05,540.26,0.0,0.0,0.0,0.09,140.4,140.49,0.0,0.0,0.0,680.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5585.87,144.0,-4322.43,1407.44,0.0,0.0,0.0,1.32,144.0,145.32,0.0,0.0,0.0,1552.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2778.38,510.0,-2149.95,1138.43,0.0,0.0,0.0,1.14,132.0,133.14,0.0,0.0,0.0,1271.57,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,625.59,0.0,0.0,3310.0,0.0,1103.3,3310.0,126.7,107.0,1233.6,4.85,0.0,18.25,7.09,0.0,0.0,2371.4,2371.4,554.6,711.5,13.19,17.04,15.04,3.87,4.05,3.89,1.47,1.44,1.45,13.36,17.27,4.15,4.34,1041.0,6.08
+project_testing-0041.osw,0,0.0,0.005,0.588,-0.0,0.0,-0.021,3.929,0.121,0.752,-0.13,0.0,0.0,0.097,0.0,0.0,0.0,0.087,0.0,0.188,3.492,0.0,0.228,-0.432,0.269,0.0,0.413,-10.576,1.219,-3.842,2.274,0.0,0.0,-0.173,0.0,0.0,0.0,1.674,0.0,4.463,-1.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-314.0,0.0,0.0,0.0,8.35,94.09,112.98,0.0,0.0,36.71,0.0,0.0,0.0,0.0,0.0,10.06,45.07,4.67,39.92,0.0,376.33,51.79,0.0,0.0,1619.2,120.87,123.63,1238.1,0.0,88.99,-602.61,0.0,178.0,0.0,2221.8,6.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.16,0.0,0.0,0.0,3.07,0.0,0.0,0.0,0.0,15.24,1634.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2237.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.765,0.0,0.0,0.0,0.373,4.218,4.688,0.0,0.0,1.092,0.0,0.0,0.0,0.0,0.0,0.273,1.495,0.346,0.86,0.0,11.361,1.418,0.0,0.0,3.309,3.267,34.59,0.0,5.501,-61.144,0.0,5.294,0.0,0.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.973,79.116,0.0,17.869,79.013,0.0,0.103,0.0,0.0,0.0,0.0,0.0,649.1,6402.5,4852.0,0.0,25347.0,0.0,-441.0,1200.0,759.0,0.0,315.0,1864.0,135.0,1133.0,4980.0,353.0,0.0,0.0,24461.0,85.0,15596.0,0.0,347.0,7615.0,468.0,5097.0,638.0,0.0,0.0,25347.0,3049.0,8133.0,82.04,45.68,17.319,0.363,0.0,4.13,0.0,4.058,0.0,6081.2,4497.4,6081.2,7.39,3.981,2.062,408.0,0.0,0.0,0.0,0.0,1921.71,195.6,-2149.95,-32.64,0.0,0.0,0.0,0.09,140.4,140.49,0.0,0.0,0.0,107.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2901.91,498.0,-2149.95,1249.96,0.0,0.0,0.0,0.12,97.2,97.32,0.0,0.0,0.0,1347.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2778.38,510.0,-2149.95,1138.43,0.0,0.0,0.0,1.14,132.0,133.14,0.0,0.0,0.0,1271.57,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,625.59,0.0,0.0,3310.0,0.0,1103.3,3310.0,126.7,107.0,1233.6,4.85,0.0,18.25,7.09,0.0,0.0,2371.4,2371.4,554.6,711.5,13.19,17.04,15.04,3.87,4.05,3.89,1.47,1.44,1.45,13.36,17.27,4.15,4.34,1041.0,6.08
project_testing-0042.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,0.0,3.415,0.0,2.178,-11.047,0.012,-0.546,2.484,0.0,0.0,1.902,0.0,0.0,0.0,8.193,0.0,4.626,-3.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.47,0.0,0.0,0.0,0.0,0.0,0.0,89.13,11.36,5.86,0.0,61.54,72.75,0.0,0.0,1475.42,170.52,171.12,545.82,0.0,0.0,0.0,5.06,147.79,0.0,1475.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010.5,3925.37,0.0,0.0,0.0,5935.87,0.0,694.18,0.0,9.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,704.09,9064.5,0.0,0.0,0.0,0.0,0.0,455.6,0.0,0.0,0.0,493.52,949.12,9064.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.317,0.082,0.0,0.986,1.186,0.0,0.0,2.698,2.663,8.826,0.0,0.0,0.0,0.095,2.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.263,20.038,0.0,0.0,0.0,0.0,4.713,0.0,0.067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.562,0.0,0.0,0.0,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.385,64.385,0.0,23.966,23.966,30.301,4.78,5.338,0.0,0.0,0.0,0.0,2077.9,16645.4,0.0,0.0,11905.0,0.0,1014.0,600.0,1614.0,0.0,112.0,0.0,348.0,329.0,4290.0,272.0,0.0,0.0,8717.0,913.0,2452.0,0.0,210.0,0.0,1524.0,2046.0,982.0,0.0,0.0,11905.0,4185.0,2959.0,87.98,17.6,0.0,7.62,0.0,10.258,0.0,6.457,2.929,1699.1,1699.1,1688.1,0.0,12.354,0.0,0.0,60.0,0.0,0.0,0.0,660.23,105.6,0.0,765.83,762.97,0.0,762.97,4.49,118.8,123.29,227.28,0.0,227.28,1879.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1405.66,144.0,0.0,1549.66,1081.38,0.0,1081.38,68.02,144.0,212.02,198.25,0.0,198.25,3041.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,842.85,120.0,0.0,962.85,457.78,0.0,457.78,52.58,132.0,184.58,116.55,0.0,116.55,1721.76,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,881.0,0.0,0.0,881.0,37.8,0.0,881.0,0.0,0.0,9.52,2.38,30.0,0.0,991.2,991.2,0.0,148.6,15.56,16.51,15.83,1.34,1.28,1.29,0.61,0.56,0.59,15.55,16.36,1.54,1.58,4648.0,1.7
-project_testing-0043.osw,0,-0.028,0.115,0.0,-0.036,0.0,-0.252,15.233,-0.599,9.825,-1.27,0.0,0.0,0.0,0.0,0.0,0.0,3.279,0.0,-1.185,20.776,-0.041,0.266,0.0,-0.046,0.0,5.492,-14.563,-0.609,-10.432,22.372,0.0,0.0,0.0,0.0,0.0,0.0,9.717,0.0,30.605,-12.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.87,0.0,0.0,8.39,9.63,720.13,0.0,22.1,312.37,0.0,0.0,11.09,0.24,23.13,639.47,708.03,0.0,0.0,96.82,0.0,1309.23,121.55,0.0,0.0,4774.58,0.0,0.0,1166.23,0.0,41.37,-678.19,7.03,241.13,0.0,5452.78,18.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,46.88,0.0,721.44,0.0,0.0,0.0,5.29,0.0,0.0,0.0,0.0,773.61,9034.04,0.0,0.0,0.0,0.0,0.0,2791.66,0.0,0.0,0.0,694.19,3485.84,9712.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,0.0,0.0,0.155,0.234,17.359,0.0,0.348,5.053,0.0,0.0,0.138,0.003,0.287,8.075,11.92,0.0,0.0,1.352,0.0,20.258,1.969,0.0,0.0,0.0,0.0,18.742,0.0,0.946,-19.767,0.133,3.959,0.0,0.283,0.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,0.0,4.898,0.0,0.0,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.701,0.0,0.0,0.0,3.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.342,116.108,0.0,71.484,91.251,0.0,5.252,19.605,0.0,0.0,2128.5,728.6,4288.4,12844.4,37576.0,30145.0,50947.0,0.0,4110.0,600.0,4710.0,0.0,112.0,0.0,0.0,2899.0,4290.0,0.0,0.0,0.0,25281.0,1969.0,16012.0,0.0,210.0,0.0,0.0,14745.0,0.0,0.0,0.0,43064.0,7035.0,21075.0,87.98,17.6,45.312,31.064,0.29,10.853,0.0,0.0,0.0,12512.7,8754.1,12512.7,32.852,46.592,0.148,156.0,49.0,0.0,0.0,0.0,2513.83,105.6,-544.54,2074.9,0.0,0.0,0.0,4.94,118.8,123.74,834.73,0.0,834.73,3033.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5352.05,144.0,-1159.35,4336.71,0.0,0.0,0.0,74.74,144.0,218.74,728.1,0.0,728.1,5283.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3209.15,270.0,-695.16,2783.99,0.0,0.0,0.0,57.77,132.0,189.77,428.07,0.0,428.07,3401.83,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,182.9,0.0,0.0,37.58,30.15,38.03,12.92,0.0,0.0,2660.4,2660.4,0.0,478.8,13.13,18.09,16.94,6.61,5.51,4.61,1.06,1.58,1.06,13.73,18.0,8.53,9.96,882.0,12.51
+project_testing-0043.osw,0,-0.028,0.115,0.0,-0.036,0.0,-0.252,15.233,-0.599,9.825,-1.27,0.0,0.0,0.0,0.0,0.0,0.0,3.279,0.0,-1.185,20.776,-0.041,0.266,0.0,-0.046,0.0,5.492,-14.563,-0.609,-10.432,22.372,0.0,0.0,0.0,0.0,0.0,0.0,9.717,0.0,30.605,-12.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.87,0.0,0.0,8.39,9.63,720.13,0.0,22.1,312.37,0.0,0.0,11.09,0.24,23.13,639.47,708.03,0.0,0.0,96.82,0.0,1309.23,121.55,0.0,0.0,4774.58,0.0,0.0,1166.23,0.0,41.37,-678.19,7.03,241.13,0.0,5452.78,18.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,46.88,0.0,721.44,0.0,0.0,0.0,5.29,0.0,0.0,0.0,0.0,773.61,9034.04,0.0,0.0,0.0,0.0,0.0,2791.66,0.0,0.0,0.0,694.19,3485.84,9712.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,0.0,0.0,0.155,0.234,17.359,0.0,0.348,5.053,0.0,0.0,0.138,0.003,0.287,8.075,11.92,0.0,0.0,1.352,0.0,20.258,1.969,0.0,0.0,0.0,0.0,18.742,0.0,0.946,-19.767,0.133,3.959,0.0,0.283,0.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,0.0,4.898,0.0,0.0,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.701,0.0,0.0,0.0,3.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.342,116.108,0.0,71.484,91.251,0.0,5.252,19.605,0.0,0.0,2128.5,728.6,4288.4,12844.4,37576.0,30145.0,50947.0,0.0,4110.0,600.0,4710.0,0.0,112.0,0.0,0.0,2899.0,4290.0,0.0,0.0,0.0,25281.0,1969.0,16012.0,0.0,210.0,0.0,0.0,14745.0,0.0,0.0,0.0,43064.0,7035.0,21075.0,87.98,17.6,45.312,31.064,0.29,10.853,0.0,0.0,0.0,12512.7,8754.1,12512.7,32.852,46.592,0.148,156.0,49.0,0.0,0.0,0.0,2513.83,255.6,-544.54,2224.9,0.0,0.0,0.0,4.94,118.8,123.74,834.73,0.0,834.73,3183.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5352.05,144.0,-1159.35,4336.71,0.0,0.0,0.0,74.74,144.0,218.74,728.1,0.0,728.1,5283.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3209.15,270.0,-695.16,2783.99,0.0,0.0,0.0,57.77,132.0,189.77,428.07,0.0,428.07,3401.83,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,182.9,0.0,0.0,37.58,30.15,38.03,12.92,0.0,0.0,2660.4,2660.4,0.0,478.8,13.13,18.09,16.94,6.61,5.51,4.61,1.06,1.58,1.06,13.73,18.0,8.53,9.96,882.0,12.51
project_testing-0044.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.003,1.846,0.0,-0.003,0.0,3.072,-8.019,-0.014,0.0,1.876,0.0,0.0,0.0,0.0,0.0,0.0,10.77,0.0,4.107,-1.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.11,0.0,0.0,0.0,0.0,1246.78,471.77,0.0,104.17,0.0,0.0,0.0,0.0,0.0,46.47,0.0,0.0,0.0,180.5,0.0,0.0,4680.25,0.0,614.15,375.13,0.0,0.0,0.0,19.23,1567.3,0.0,4680.25,31.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.27,0.0,0.0,0.0,2245.2,0.0,2.29,0.0,823.29,0.0,0.0,3091.05,9472.52,0.0,0.0,0.0,0.0,0.0,0.0,1227.39,0.0,0.0,473.84,1701.22,9472.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.108,0.0,0.0,0.0,0.0,5.053,1.94,0.0,0.361,0.0,0.0,0.0,0.0,0.0,0.291,0.0,0.0,0.0,0.741,0.0,0.0,0.0,2.43,1.528,0.0,0.0,0.0,0.091,6.444,0.0,0.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.138,0.0,0.0,0.0,15.242,0.0,0.016,0.0,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.903,0.0,0.0,2.665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.662,49.662,0.0,19.109,19.109,0.0,20.985,9.568,0.0,0.0,1484.0,0.0,2786.7,7070.2,0.0,0.0,11507.0,0.0,537.0,400.0,937.0,0.0,423.0,0.0,0.0,270.0,4060.0,0.0,0.0,0.0,7110.0,1337.0,1021.0,0.0,939.0,0.0,0.0,2240.0,0.0,0.0,0.0,11507.0,5866.0,2462.0,89.6,4.28,0.0,11.906,0.0,6.398,0.0,4.262,3.212,1406.5,1406.5,1296.1,0.0,15.342,0.0,0.0,0.0,0.0,0.0,0.0,487.23,118.8,0.0,606.03,0.0,0.0,0.0,19.1,104.4,123.5,355.15,0.0,355.15,1084.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,800.92,144.0,0.0,944.92,0.0,0.0,0.0,186.61,144.0,330.61,221.04,0.0,221.04,1496.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,672.04,120.0,0.0,792.04,0.0,0.0,0.0,230.83,132.0,362.83,208.91,0.0,208.91,1363.78,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,0.0,0.0,22.9,0.0,0.0,0.0,0.0,11.51,0.0,30.0,0.0,565.5,565.5,0.0,44.6,15.74,15.66,15.41,0.94,0.85,0.87,0.57,0.55,0.56,14.55,12.82,1.25,1.28,4772.0,1.41
project_testing-0045.osw,0,0.0,0.077,0.0,-0.008,0.0,0.003,7.534,-0.147,0.699,0.233,0.0,0.0,3.95,0.0,0.0,0.0,0.147,0.0,0.012,0.17,0.0,0.29,0.0,-0.043,0.0,0.559,-8.274,-0.741,-0.674,1.184,0.0,0.0,8.789,0.0,0.0,0.0,1.282,0.0,0.344,-0.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.19,411.14,44.28,349.16,109.43,0.0,5.69,0.0,0.0,0.0,0.0,0.0,16.87,26.21,0.0,233.49,106.71,0.0,0.0,3187.89,0.0,228.45,1069.43,0.0,0.0,0.0,0.0,140.06,0.0,3187.89,56.77,0.0,0.0,0.0,0.0,0.0,0.0,761.87,0.0,0.0,0.0,0.0,761.87,0.0,0.0,0.0,0.0,0.0,0.0,695.09,296.73,0.0,1281.98,0.0,0.0,2273.8,6223.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6223.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,6.12,6.866,0.755,6.319,1.94,0.0,0.123,0.0,0.0,0.0,0.0,0.0,0.342,0.462,0.0,4.167,1.941,0.0,0.0,0.0,3.784,19.579,0.0,0.0,0.0,0.0,2.483,0.0,1.005,0.0,0.0,0.0,0.0,0.0,0.0,3.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.719,2.014,0.0,8.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.211,75.211,0.0,55.885,55.885,3.889,15.437,0.0,0.0,0.0,0.0,1645.2,4476.4,15632.1,4367.0,0.0,12900.0,0.0,2279.0,1200.0,3479.0,0.0,295.0,0.0,0.0,734.0,4980.0,9579.0,0.0,0.0,16935.0,908.0,439.0,0.0,353.0,0.0,0.0,1795.0,8563.0,0.0,0.0,12900.0,1760.0,428.0,95.0,32.9,21.825,2.595,0.0,9.392,0.0,7.736,2.056,3471.9,3317.8,3193.1,7.93,14.255,0.0,663.0,0.0,0.0,0.0,0.0,1457.67,96.0,0.0,1553.67,109.12,0.0,109.12,14.51,108.0,122.51,0.0,0.0,0.0,1785.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2045.33,144.0,0.0,2189.33,136.02,0.0,136.02,159.98,144.0,303.98,0.0,0.0,0.0,2629.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1965.39,120.0,0.0,2085.39,58.76,0.0,58.76,169.8,132.0,301.8,0.0,0.0,0.0,2445.95,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,61.8,0.0,854.0,4.37,0.0,12.9,0.0,50.0,0.0,662.2,662.2,0.0,39.8,15.83,17.6,16.68,2.68,2.3,2.48,1.61,1.14,1.22,18.91,17.0,3.24,2.66,2875.0,3.47
-project_testing-0046.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014,1.114,0.0,0.02,0.0,4.735,-10.218,0.077,-1.12,12.741,0.0,0.0,0.0,0.0,0.0,0.0,9.058,0.0,3.221,-1.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-322.71,0.0,11.66,7.32,0.0,0.0,0.22,22.66,390.62,118.14,0.0,40.09,0.0,0.0,0.0,112.72,1.51,13.12,10.68,0.0,125.78,57.19,0.0,0.0,821.29,226.0,226.8,499.15,0.0,346.42,-1492.03,101.09,324.88,0.0,2313.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,920.04,0.0,13.14,0.0,1707.26,0.0,276.8,0.0,0.0,3235.31,0.0,6152.55,10125.36,458.53,0.0,0.0,0.0,0.0,2692.99,0.0,0.0,0.0,0.0,3151.52,11617.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,1.756,0.0,0.194,0.127,0.0,0.0,0.007,0.373,6.319,1.94,0.0,0.579,0.0,0.0,0.0,1.772,0.026,0.329,0.149,0.0,2.003,0.894,0.0,0.0,3.576,3.53,8.064,0.0,7.924,-43.487,1.768,5.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.246,0.0,0.089,0.0,11.59,0.0,1.879,0.0,0.0,21.964,0.0,2.579,0.0,0.0,0.0,0.0,15.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.673,106.16,0.0,3.179,46.666,0.0,41.769,17.725,0.0,0.0,486.3,812.5,1388.7,12481.0,0.0,0.0,13058.0,0.0,1819.0,1200.0,3019.0,0.0,266.0,0.0,0.0,1283.0,4980.0,0.0,0.0,0.0,9328.0,1158.0,1640.0,0.0,499.0,0.0,0.0,7030.0,0.0,0.0,0.0,13059.0,3836.0,1693.0,87.98,17.6,0.016,18.893,0.0,8.038,0.0,4.367,1.669,4353.1,3797.8,4353.1,5.217,18.21,3.494,0.0,457.0,0.0,0.0,0.0,1285.41,105.6,-1197.83,193.18,0.0,0.0,0.0,39.26,118.8,158.06,754.67,0.0,754.67,1105.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2736.69,144.0,-2550.23,330.46,0.0,0.0,0.0,594.42,144.0,738.42,658.27,0.0,658.27,1727.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1640.95,450.0,-1529.15,561.8,0.0,0.0,0.0,459.46,132.0,591.46,387.01,0.0,387.01,1540.27,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,76.6,0.0,0.0,0.0,0.0,6.53,6.53,80.0,0.0,929.4,929.4,0.0,111.4,11.01,12.32,12.24,2.69,2.82,2.71,0.93,0.89,0.91,10.18,11.82,3.59,3.89,8752.0,4.35
+project_testing-0046.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014,1.114,0.0,0.02,0.0,4.735,-10.218,0.077,-1.12,12.741,0.0,0.0,0.0,0.0,0.0,0.0,9.058,0.0,3.221,-1.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-322.71,0.0,11.66,7.32,0.0,0.0,0.22,22.66,390.62,118.14,0.0,40.09,0.0,0.0,0.0,112.72,1.51,13.12,10.68,0.0,125.78,57.19,0.0,0.0,821.29,226.0,226.8,499.15,0.0,346.42,-1492.03,101.09,324.88,0.0,2313.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,920.04,0.0,13.14,0.0,1707.26,0.0,276.8,0.0,0.0,3235.31,0.0,6152.55,10125.36,458.53,0.0,0.0,0.0,0.0,2692.99,0.0,0.0,0.0,0.0,3151.52,11617.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,1.756,0.0,0.194,0.127,0.0,0.0,0.007,0.373,6.319,1.94,0.0,0.579,0.0,0.0,0.0,1.772,0.026,0.329,0.149,0.0,2.003,0.894,0.0,0.0,3.576,3.53,8.064,0.0,7.924,-43.487,1.768,5.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.246,0.0,0.089,0.0,11.59,0.0,1.879,0.0,0.0,21.964,0.0,2.579,0.0,0.0,0.0,0.0,15.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.673,106.16,0.0,3.179,46.666,0.0,41.769,17.725,0.0,0.0,486.3,812.5,1388.7,12481.0,0.0,0.0,13058.0,0.0,1819.0,1200.0,3019.0,0.0,266.0,0.0,0.0,1283.0,4980.0,0.0,0.0,0.0,9328.0,1158.0,1640.0,0.0,499.0,0.0,0.0,7030.0,0.0,0.0,0.0,13059.0,3836.0,1693.0,87.98,17.6,0.016,18.893,0.0,8.038,0.0,4.367,1.669,4353.1,3797.8,4353.1,5.217,18.21,3.494,0.0,457.0,0.0,0.0,0.0,1285.41,435.6,-1197.83,523.18,0.0,0.0,0.0,39.26,118.8,158.06,754.67,0.0,754.67,1435.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2736.69,144.0,-2550.23,330.46,0.0,0.0,0.0,594.42,144.0,738.42,658.27,0.0,658.27,1727.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1640.95,450.0,-1529.15,561.8,0.0,0.0,0.0,459.46,132.0,591.46,387.01,0.0,387.01,1540.27,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,76.6,0.0,0.0,0.0,0.0,6.53,6.53,80.0,0.0,929.4,929.4,0.0,111.4,11.01,12.32,12.24,2.69,2.82,2.71,0.93,0.89,0.91,10.18,11.82,3.59,3.89,8752.0,4.35
project_testing-0047.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.001,1.026,0.0,21.519,0.0,8.953,-17.583,-0.065,-2.015,15.279,0.661,0.0,0.0,0.0,0.0,0.0,12.48,0.0,28.468,-6.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.2,0.0,0.0,0.0,0.0,140.05,47.5,312.37,194.47,0.0,68.94,0.0,0.0,0.0,0.0,0.0,11.32,11.93,0.0,162.85,43.07,0.0,0.0,1721.7,0.0,319.61,130.47,0.0,0.0,0.0,145.57,104.82,0.0,1721.7,16.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1245.71,0.0,0.0,0.0,1245.71,0.0,41.49,0.0,18.52,0.0,4687.88,0.0,390.07,0.0,1685.23,0.0,0.0,6823.19,21049.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21049.97,0.0,0.0,0.0,0.0,0.0,11259.37,0.0,0.0,0.0,0.0,11259.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.186,0.0,0.0,0.0,0.0,2.298,0.738,5.053,3.193,0.0,0.967,0.0,0.0,0.0,0.0,0.0,0.319,0.167,0.0,2.515,0.69,0.0,0.0,0.0,4.975,2.097,0.0,0.0,0.0,2.639,1.721,0.0,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.359,0.0,0.0,0.0,0.0,0.282,0.0,0.126,0.0,31.825,0.0,2.648,0.0,11.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.784,136.784,0.0,27.806,27.806,6.359,46.322,0.0,56.297,0.0,0.0,1547.8,2835.5,11216.7,0.0,0.0,24574.0,0.0,1616.0,600.0,2216.0,0.0,224.0,0.0,895.0,1140.0,4290.0,0.0,0.0,0.0,13766.0,860.0,6358.0,0.0,419.0,0.0,3613.0,6966.0,0.0,0.0,0.0,24574.0,3872.0,9704.0,87.98,17.6,0.402,64.71,0.0,8.506,0.0,6.783,3.322,2708.0,2708.0,2293.1,5.756,37.637,0.0,0.0,502.0,0.0,0.0,0.0,766.03,105.6,0.0,871.63,160.12,0.0,160.12,43.54,118.8,162.34,0.0,0.0,0.0,1914.69,720.6,0.0,720.6,0.0,0.0,0.0,0.0,0.0,0.0,1630.91,144.0,0.0,1774.91,226.94,0.0,226.94,659.21,144.0,803.21,0.0,0.0,0.0,3649.51,844.45,0.0,844.45,0.0,0.0,0.0,0.0,0.0,0.0,977.91,120.0,0.0,1097.91,96.07,0.0,96.07,509.54,132.0,641.54,0.0,0.0,0.0,2679.97,844.45,0.0,844.45,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2115.0,0.0,2115.0,2115.0,60.6,148.0,0.0,0.0,0.0,17.2,7.37,30.0,0.0,1535.6,1535.6,1535.6,276.4,14.03,15.96,14.44,1.9,1.67,1.74,0.56,0.58,0.56,17.64,17.18,2.36,2.2,5155.0,2.71
-project_testing-0048.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.008,0.0,5.211,-17.744,0.059,-2.623,12.793,0.0,0.0,0.0,0.0,0.0,0.0,1.761,0.0,0.762,-0.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.32,18.87,12.21,0.0,0.0,0.0,42.81,0.0,123.49,0.0,0.0,0.0,0.0,0.0,445.03,2.83,17.87,39.57,0.0,524.22,76.84,0.0,0.0,4413.05,0.0,0.0,2990.84,0.0,0.0,-206.06,134.93,171.27,0.0,4619.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,42.83,0.0,19.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.94,5322.13,847.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,847.14,5528.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.359,0.225,0.0,0.0,0.0,0.711,0.0,2.189,0.0,0.0,0.0,0.0,0.0,10.101,0.051,0.363,0.698,0.0,9.298,1.385,0.0,0.0,0.0,0.0,54.718,0.0,0.0,-4.177,2.465,3.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.291,0.0,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.932,91.108,0.0,81.747,85.923,0.0,0.421,4.765,0.0,0.0,3081.9,1544.3,3077.0,34424.7,0.0,0.0,8803.0,0.0,4440.0,1200.0,5640.0,0.0,0.0,0.0,0.0,3328.0,4980.0,0.0,0.0,0.0,9363.0,224.0,830.0,0.0,0.0,0.0,0.0,7801.0,0.0,0.0,0.0,8803.0,651.0,350.0,95.0,32.9,0.0,0.0,0.0,19.039,0.0,11.4,0.0,8648.9,4579.5,8648.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2241.17,96.0,-108.94,2228.23,0.0,0.0,0.0,0.4,108.0,108.4,202.86,0.0,202.86,2539.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3144.7,144.0,-152.86,3135.84,0.0,0.0,0.0,4.36,144.0,148.36,152.65,0.0,152.65,3436.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3021.8,150.0,-146.88,3024.92,0.0,0.0,0.0,4.63,132.0,136.63,104.03,0.0,104.03,3265.58,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,123.5,0.0,0.0,0.0,0.0,7.04,1.76,0.0,0.0,335.8,335.8,0.0,20.1,15.01,15.17,14.77,3.77,5.39,5.0,1.87,1.88,1.87,12.45,13.36,5.52,6.83,8373.0,8.65
-project_testing-0049.osw,0,0.0,0.265,0.0,-0.525,0.0,0.365,5.822,-0.654,0.0,0.0,0.0,0.0,3.12,0.0,0.0,0.0,11.446,0.0,0.427,5.67,0.0,0.066,0.0,0.243,0.0,0.469,-2.422,-0.824,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,3.641,0.0,0.808,-0.736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-312.98,0.0,0.0,0.0,0.0,127.41,0.0,0.0,0.0,73.6,0.0,1.94,0.0,0.0,0.0,0.0,0.0,5.72,0.0,0.0,0.0,0.0,0.0,0.0,-280.65,0.0,69.99,0.0,0.0,0.0,-454.01,0.0,207.7,0.0,173.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,207.6,0.0,0.0,0.0,626.57,0.0,0.0,834.17,790.08,0.0,0.0,0.0,0.0,0.0,236.56,0.0,0.0,0.0,0.0,236.56,1244.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.58,0.0,0.0,0.0,0.0,5.735,0.0,0.0,0.0,2.189,0.0,0.029,0.0,0.0,0.0,0.0,0.0,0.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.0,-52.611,0.0,6.178,0.0,0.0,0.0,0.0,0.0,0.0,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.409,0.0,0.0,0.0,4.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-28.827,23.783,0.0,-35.821,16.79,0.0,5.663,1.331,0.0,0.0,0.0,0.0,0.0,0.0,9288.0,0.0,12456.0,0.0,-124.0,400.0,276.0,0.0,88.0,0.0,245.0,318.0,4060.0,611.0,0.0,0.0,11280.0,3781.0,2177.0,0.0,97.0,0.0,986.0,2148.0,1409.0,0.0,0.0,12456.0,6307.0,1509.0,82.04,45.68,26.093,2.1,0.0,0.0,0.0,0.0,0.0,1391.0,1391.0,1019.2,11.721,7.876,2035.749,1370.0,0.0,0.0,0.0,0.0,407.85,105.6,-722.8,-209.34,0.0,0.0,0.0,5.15,140.4,145.55,40.67,0.0,40.67,-23.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1185.51,144.0,-1500.46,-170.94,0.0,0.0,0.0,72.42,144.0,216.42,39.15,0.0,39.15,84.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.67,450.0,-957.1,82.57,0.0,0.0,0.0,62.29,132.0,194.29,29.05,0.0,29.05,305.91,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1228.0,0.0,0.0,1228.0,0.0,0.0,1228.0,9.29,0.0,7.47,4.98,0.0,0.0,1170.2,1170.2,0.0,112.8,12.93,15.96,15.71,1.24,0.8,0.99,0.38,0.27,0.31,10.73,15.91,1.31,0.9,5751.0,1.39
-project_testing-0050.osw,0,0.0,0.209,0.0,0.009,0.0,-0.01,2.944,0.019,0.0,-0.233,0.0,0.0,1.437,0.0,0.0,0.0,-0.306,0.0,0.0,0.0,0.0,0.107,0.0,0.014,0.0,0.055,-1.457,0.03,0.0,1.12,0.0,0.0,1.368,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-232.01,0.0,0.0,0.0,0.0,44.03,0.0,0.0,0.0,73.6,0.0,10.83,0.0,0.0,0.0,23.68,0.0,8.36,0.0,0.0,0.0,11.65,0.0,0.0,-152.92,0.0,63.2,0.0,0.0,45.49,-288.92,0.0,87.18,0.0,136.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.32,0.0,0.0,0.0,0.0,200.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,565.78,0.0,0.0,565.78,925.7,0.0,0.0,0.0,0.0,0.0,312.51,0.0,0.0,0.0,0.0,312.51,1214.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,0.0,0.0,1.638,0.0,0.0,0.0,2.189,0.0,0.226,0.0,0.0,0.0,0.626,0.0,0.436,0.0,0.0,0.0,0.323,0.0,0.0,0.0,1.67,0.0,0.0,2.812,-33.479,0.0,2.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-13.908,19.572,0.0,-20.529,12.951,1.023,3.841,1.758,0.0,0.0,0.0,0.0,0.0,0.0,3506.0,0.0,2889.0,0.0,-98.0,600.0,502.0,0.0,132.0,0.0,0.0,251.0,4290.0,641.0,0.0,0.0,5314.0,0.0,0.0,0.0,146.0,0.0,0.0,979.0,768.0,0.0,0.0,2889.0,996.0,0.0,82.04,45.68,4.15,2.115,0.0,0.0,0.0,0.0,1.857,1309.3,1155.2,1309.3,2.586,4.353,2232.697,281.0,46.0,0.0,0.0,0.0,314.43,105.6,-494.92,-74.89,27.96,0.0,27.96,3.5,140.4,143.9,53.73,0.0,53.73,150.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,913.96,144.0,-1094.45,-36.49,35.76,0.0,35.76,49.12,144.0,193.12,51.72,0.0,51.72,244.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,454.6,330.0,-665.17,119.43,15.45,0.0,15.45,42.25,132.0,174.25,38.38,0.0,38.38,347.51,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.9,0.0,322.0,3.51,0.0,2.02,0.87,66.0,0.0,599.2,599.2,0.0,0.0,13.93,12.63,13.02,0.94,0.83,0.8,0.28,0.21,0.22,14.18,11.82,1.09,0.97,8311.0,1.31
+project_testing-0048.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.008,0.0,5.211,-17.744,0.059,-2.623,12.793,0.0,0.0,0.0,0.0,0.0,0.0,1.761,0.0,0.762,-0.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.32,18.87,12.21,0.0,0.0,0.0,42.81,0.0,123.49,0.0,0.0,0.0,0.0,0.0,445.03,2.83,17.87,39.57,0.0,524.22,76.84,0.0,0.0,4413.05,0.0,0.0,2990.84,0.0,0.0,-206.06,134.93,171.27,0.0,4619.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,42.83,0.0,19.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.94,5322.13,847.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,847.14,5528.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.359,0.225,0.0,0.0,0.0,0.711,0.0,2.189,0.0,0.0,0.0,0.0,0.0,10.101,0.051,0.363,0.698,0.0,9.298,1.385,0.0,0.0,0.0,0.0,54.718,0.0,0.0,-4.177,2.465,3.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.291,0.0,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.932,91.108,0.0,81.747,85.923,0.0,0.421,4.765,0.0,0.0,3081.9,1544.3,3077.0,34424.7,0.0,0.0,8803.0,0.0,4440.0,1200.0,5640.0,0.0,0.0,0.0,0.0,3328.0,4980.0,0.0,0.0,0.0,9363.0,224.0,830.0,0.0,0.0,0.0,0.0,7801.0,0.0,0.0,0.0,8803.0,651.0,350.0,95.0,32.9,0.0,0.0,0.0,19.039,0.0,11.4,0.0,8648.9,4579.5,8648.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2241.17,126.0,-108.94,2258.23,0.0,0.0,0.0,0.4,108.0,108.4,202.86,0.0,202.86,2569.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3144.7,144.0,-152.86,3135.84,0.0,0.0,0.0,4.36,144.0,148.36,152.65,0.0,152.65,3436.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3021.8,150.0,-146.88,3024.92,0.0,0.0,0.0,4.63,132.0,136.63,104.03,0.0,104.03,3265.58,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,123.5,0.0,0.0,0.0,0.0,7.04,1.76,0.0,0.0,335.8,335.8,0.0,20.1,15.01,15.17,14.77,3.77,5.39,5.0,1.87,1.88,1.87,12.45,13.36,5.52,6.83,8373.0,8.65
+project_testing-0049.osw,0,0.0,0.265,0.0,-0.525,0.0,0.365,5.822,-0.654,0.0,0.0,0.0,0.0,3.12,0.0,0.0,0.0,11.446,0.0,0.427,5.67,0.0,0.066,0.0,0.243,0.0,0.469,-2.422,-0.824,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,3.641,0.0,0.808,-0.736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-312.98,0.0,0.0,0.0,0.0,127.41,0.0,0.0,0.0,73.6,0.0,1.94,0.0,0.0,0.0,0.0,0.0,5.72,0.0,0.0,0.0,0.0,0.0,0.0,-280.65,0.0,69.99,0.0,0.0,0.0,-454.01,0.0,207.7,0.0,173.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,207.6,0.0,0.0,0.0,626.57,0.0,0.0,834.17,790.08,0.0,0.0,0.0,0.0,0.0,236.56,0.0,0.0,0.0,0.0,236.56,1244.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.58,0.0,0.0,0.0,0.0,5.735,0.0,0.0,0.0,2.189,0.0,0.029,0.0,0.0,0.0,0.0,0.0,0.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.0,-52.611,0.0,6.178,0.0,0.0,0.0,0.0,0.0,0.0,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.409,0.0,0.0,0.0,4.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-28.827,23.783,0.0,-35.821,16.79,0.0,5.663,1.331,0.0,0.0,0.0,0.0,0.0,0.0,9288.0,0.0,12456.0,0.0,-124.0,400.0,276.0,0.0,88.0,0.0,245.0,318.0,4060.0,611.0,0.0,0.0,11280.0,3781.0,2177.0,0.0,97.0,0.0,986.0,2148.0,1409.0,0.0,0.0,12456.0,6307.0,1509.0,82.04,45.68,26.093,2.1,0.0,0.0,0.0,0.0,0.0,1391.0,1391.0,1019.2,11.721,7.876,2035.749,1370.0,0.0,0.0,0.0,0.0,407.85,195.6,-1849.44,-1245.98,0.0,0.0,0.0,5.15,140.4,145.55,40.67,0.0,40.67,-1059.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,531.25,438.0,-1849.44,-880.19,0.0,0.0,0.0,6.68,97.2,103.88,52.29,0.0,52.29,-724.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.67,450.0,-957.1,82.57,0.0,0.0,0.0,62.29,132.0,194.29,29.05,0.0,29.05,305.91,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1228.0,0.0,0.0,1228.0,0.0,0.0,1228.0,9.29,0.0,7.47,4.98,0.0,0.0,1170.2,1170.2,0.0,112.8,12.93,15.96,15.71,1.24,0.8,0.99,0.38,0.27,0.31,10.73,15.91,1.31,0.9,5751.0,1.39
+project_testing-0050.osw,0,0.0,0.209,0.0,0.009,0.0,-0.01,2.944,0.019,0.0,-0.233,0.0,0.0,1.437,0.0,0.0,0.0,-0.306,0.0,0.0,0.0,0.0,0.107,0.0,0.014,0.0,0.055,-1.457,0.03,0.0,1.12,0.0,0.0,1.368,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-232.01,0.0,0.0,0.0,0.0,44.03,0.0,0.0,0.0,73.6,0.0,10.83,0.0,0.0,0.0,23.68,0.0,8.36,0.0,0.0,0.0,11.65,0.0,0.0,-152.92,0.0,63.2,0.0,0.0,45.49,-288.92,0.0,87.18,0.0,136.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.32,0.0,0.0,0.0,0.0,200.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,565.78,0.0,0.0,565.78,925.7,0.0,0.0,0.0,0.0,0.0,312.51,0.0,0.0,0.0,0.0,312.51,1214.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,0.0,0.0,1.638,0.0,0.0,0.0,2.189,0.0,0.226,0.0,0.0,0.0,0.626,0.0,0.436,0.0,0.0,0.0,0.323,0.0,0.0,0.0,1.67,0.0,0.0,2.812,-33.479,0.0,2.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-13.908,19.572,0.0,-20.529,12.951,1.023,3.841,1.758,0.0,0.0,0.0,0.0,0.0,0.0,3506.0,0.0,2889.0,0.0,-98.0,600.0,502.0,0.0,132.0,0.0,0.0,251.0,4290.0,641.0,0.0,0.0,5314.0,0.0,0.0,0.0,146.0,0.0,0.0,979.0,768.0,0.0,0.0,2889.0,996.0,0.0,82.04,45.68,4.15,2.115,0.0,0.0,0.0,0.0,1.857,1309.3,1155.2,1309.3,2.586,4.353,2232.697,281.0,46.0,0.0,0.0,0.0,314.43,195.6,-1176.57,-666.54,27.96,0.0,27.96,3.5,140.4,143.9,53.73,0.0,53.73,-440.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.25,318.0,-1176.57,-472.32,19.86,0.0,19.86,4.53,97.2,101.73,69.08,0.0,69.08,-281.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,454.6,330.0,-665.17,119.43,15.45,0.0,15.45,42.25,132.0,174.25,38.38,0.0,38.38,347.51,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.9,0.0,322.0,3.51,0.0,2.02,0.87,66.0,0.0,599.2,599.2,0.0,0.0,13.93,12.63,13.02,0.94,0.83,0.8,0.28,0.21,0.22,14.18,11.82,1.09,0.97,8311.0,1.31
project_testing-0051.osw,0,0.001,0.022,0.0,0.002,0.0,0.025,0.898,-0.007,0.0,0.014,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.035,0.239,0.006,0.447,0.0,0.01,0.0,11.592,-7.129,-0.037,0.0,5.917,0.0,0.0,0.0,0.0,0.0,0.0,23.319,0.0,2.759,-1.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.7,0.0,0.0,0.0,118.14,0.0,49.44,0.0,0.0,1445.47,0.0,0.0,12.43,0.0,0.0,0.0,20.14,0.0,0.0,2088.41,0.0,0.0,0.0,0.0,14.98,0.0,0.0,388.1,0.0,2088.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,0.0,0.0,0.0,3538.24,686.67,0.0,0.0,0.0,0.0,0.0,4224.91,6313.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6313.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.658,0.0,0.0,0.0,1.94,0.0,0.723,0.0,0.0,21.264,0.0,0.0,0.283,0.0,0.0,0.0,0.326,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,6.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.021,4.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.591,60.591,0.0,31.909,31.909,0.0,28.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2414.0,0.0,17502.0,0.0,1372.0,1000.0,2372.0,0.0,112.0,0.0,0.0,968.0,4750.0,0.0,0.0,0.0,9314.0,2476.0,1009.0,0.0,210.0,0.0,0.0,7185.0,0.0,0.0,0.0,17502.0,8928.0,1179.0,87.98,17.6,1.672,36.062,0.0,0.0,0.0,0.0,3.608,3573.4,980.9,3573.4,1.725,20.212,0.0,2.0,48.0,0.0,0.0,0.0,879.04,105.6,0.0,984.64,0.0,0.0,0.0,26.96,118.8,145.76,0.0,0.0,0.0,1130.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1871.52,144.0,0.0,2015.52,0.0,0.0,0.0,408.18,144.0,552.18,0.0,0.0,0.0,2567.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1122.18,120.0,0.0,1242.18,0.0,0.0,0.0,315.51,132.0,447.51,0.0,0.0,0.0,1689.69,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,31.2,0.0,0.0,2.41,0.0,10.5,7.0,40.0,0.0,764.5,764.5,0.0,45.9,16.34,6.67,5.88,0.54,2.16,0.86,0.3,1.16,0.31,13.36,9.45,0.67,3.45,414.0,3.57
-project_testing-0052.osw,0,-0.005,0.127,0.0,-0.008,0.0,-0.224,3.997,-0.078,0.0,0.102,0.0,0.0,0.0,0.0,0.0,0.0,0.644,0.0,0.153,1.047,-0.011,1.125,0.0,-0.013,0.0,19.585,-5.484,-0.083,0.0,1.56,0.0,0.0,0.0,0.0,0.0,0.0,10.372,0.0,5.972,-1.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-177.63,0.0,0.0,0.0,0.0,113.68,9.27,0.0,0.0,133.32,0.0,49.01,0.0,0.0,0.0,0.0,0.0,11.4,0.0,0.0,0.0,49.52,0.0,0.0,-524.02,0.0,0.0,0.0,0.0,0.0,-949.47,0.0,236.89,0.0,425.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,949.79,0.0,0.0,0.0,949.79,0.0,0.0,0.0,0.0,0.0,2321.99,0.0,0.0,0.0,0.0,0.0,0.0,2321.99,7706.34,0.0,0.0,0.0,0.0,0.0,4958.57,0.0,0.0,0.0,0.0,4958.57,8655.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.38,0.0,0.0,0.0,0.0,2.633,0.157,0.0,0.0,2.189,0.0,0.695,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,0.0,0.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-27.673,0.0,3.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.795,59.468,0.0,-16.705,10.968,4.848,15.764,27.888,0.0,0.0,0.0,0.0,0.0,0.0,12890.0,0.0,15950.0,0.0,2051.0,800.0,2851.0,0.0,224.0,0.0,0.0,1173.0,4520.0,0.0,0.0,0.0,9627.0,1486.0,2224.0,0.0,419.0,0.0,0.0,9054.0,0.0,0.0,0.0,15950.0,4104.0,2374.0,87.98,17.6,5.743,31.598,0.0,0.0,0.0,0.0,3.192,2091.0,2091.0,627.3,12.293,20.273,1954.744,65.0,25.0,0.0,0.0,0.0,301.47,105.6,-448.34,-41.28,122.08,0.0,122.08,14.82,118.8,133.62,1187.39,0.0,1187.39,1401.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,641.83,144.0,-788.71,-2.88,173.03,0.0,173.03,224.34,144.0,368.34,1035.71,0.0,1035.71,1574.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.85,330.0,-556.21,158.65,73.25,0.0,73.25,173.4,132.0,305.4,608.92,0.0,608.92,1146.22,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,26.8,0.0,0.0,12.89,0.0,11.17,4.79,40.0,0.0,1042.0,1042.0,0.0,156.2,11.07,10.91,11.26,1.1,0.37,0.45,0.22,0.24,0.22,7.64,10.91,1.95,0.47,5483.0,2.09
-project_testing-0053.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,-0.004,0.0,0.019,-2.741,-0.021,0.0,3.298,0.0,0.0,0.388,0.0,0.0,0.0,2.072,0.0,2.752,-4.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,8.65,0.0,0.0,0.0,22.3,0.0,0.0,0.0,0.0,0.0,20.93,0.0,0.0,299.53,0.0,72.22,0.0,0.0,5.2,0.0,0.0,169.35,0.0,299.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,0.0,0.0,0.0,0.0,646.55,1749.17,0.0,2395.72,3193.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3193.99,0.0,0.0,0.0,0.0,0.0,498.74,0.0,0.0,0.0,0.0,498.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.019,0.0,0.0,0.0,0.0,0.105,0.0,0.0,0.0,0.585,0.0,0.0,0.0,0.0,0.0,0.58,0.0,0.0,0.0,1.909,0.0,0.0,0.321,0.0,0.0,5.037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.389,11.875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.314,27.314,0.0,8.556,8.556,0.0,16.264,0.0,2.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6047.0,0.0,-167.0,800.0,633.0,0.0,210.0,0.0,0.0,430.0,4520.0,244.0,0.0,0.0,8229.0,101.0,2723.0,0.0,232.0,0.0,0.0,1505.0,442.0,0.0,0.0,6047.0,2246.0,1623.0,82.04,45.68,0.017,1.913,0.0,0.0,0.0,0.0,0.585,911.3,845.5,840.4,4.833,4.833,0.0,0.0,0.0,0.0,0.0,0.0,208.12,105.6,0.0,313.72,0.0,0.0,0.0,14.8,140.4,155.2,0.0,0.0,0.0,517.55,48.63,0.0,48.63,0.0,0.0,0.0,0.0,0.0,0.0,604.94,144.0,0.0,748.94,0.0,0.0,0.0,207.99,144.0,351.99,0.0,0.0,0.0,1138.34,37.41,0.0,37.41,0.0,0.0,0.0,0.0,0.0,0.0,300.89,120.0,0.0,420.89,0.0,0.0,0.0,178.91,132.0,310.91,0.0,0.0,0.0,769.21,37.41,0.0,37.41,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,55.4,0.0,854.0,0.0,0.0,6.05,0.0,50.0,0.0,975.8,975.8,0.0,87.8,14.15,11.63,11.7,0.66,0.66,0.66,0.23,0.21,0.22,17.55,12.82,0.72,0.72,6725.0,0.91
+project_testing-0052.osw,0,-0.005,0.127,0.0,-0.008,0.0,-0.224,3.997,-0.078,0.0,0.102,0.0,0.0,0.0,0.0,0.0,0.0,0.644,0.0,0.153,1.047,-0.011,1.125,0.0,-0.013,0.0,19.585,-5.484,-0.083,0.0,1.56,0.0,0.0,0.0,0.0,0.0,0.0,10.372,0.0,5.972,-1.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-177.63,0.0,0.0,0.0,0.0,113.68,9.27,0.0,0.0,133.32,0.0,49.01,0.0,0.0,0.0,0.0,0.0,11.4,0.0,0.0,0.0,49.52,0.0,0.0,-524.02,0.0,0.0,0.0,0.0,0.0,-949.47,0.0,236.89,0.0,425.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,949.79,0.0,0.0,0.0,949.79,0.0,0.0,0.0,0.0,0.0,2321.99,0.0,0.0,0.0,0.0,0.0,0.0,2321.99,7706.34,0.0,0.0,0.0,0.0,0.0,4958.57,0.0,0.0,0.0,0.0,4958.57,8655.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.38,0.0,0.0,0.0,0.0,2.633,0.157,0.0,0.0,2.189,0.0,0.695,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,0.0,0.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-27.673,0.0,3.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.795,59.468,0.0,-16.705,10.968,4.848,15.764,27.888,0.0,0.0,0.0,0.0,0.0,0.0,12890.0,0.0,15950.0,0.0,2051.0,800.0,2851.0,0.0,224.0,0.0,0.0,1173.0,4520.0,0.0,0.0,0.0,9627.0,1486.0,2224.0,0.0,419.0,0.0,0.0,9054.0,0.0,0.0,0.0,15950.0,4104.0,2374.0,87.98,17.6,5.743,31.598,0.0,0.0,0.0,0.0,3.192,2091.0,2091.0,627.3,12.293,20.273,1954.744,65.0,25.0,0.0,0.0,0.0,301.47,315.6,-472.82,144.25,122.08,0.0,122.08,14.82,118.8,133.62,1187.39,0.0,1187.39,1587.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,641.83,144.0,-788.71,-2.88,173.03,0.0,173.03,224.34,144.0,368.34,1035.71,0.0,1035.71,1574.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.85,330.0,-556.21,158.65,73.25,0.0,73.25,173.4,132.0,305.4,608.92,0.0,608.92,1146.22,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,26.8,0.0,0.0,12.89,0.0,11.17,4.79,40.0,0.0,1042.0,1042.0,0.0,156.2,11.07,10.91,11.26,1.1,0.37,0.45,0.22,0.24,0.22,7.64,10.91,1.95,0.47,5483.0,2.09
+project_testing-0053.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,-0.004,0.0,0.019,-2.741,-0.021,0.0,3.298,0.0,0.0,0.388,0.0,0.0,0.0,2.072,0.0,2.752,-4.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,8.65,0.0,0.0,0.0,22.3,0.0,0.0,0.0,0.0,0.0,20.93,0.0,0.0,299.53,0.0,72.22,0.0,0.0,5.2,0.0,0.0,169.35,0.0,299.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,0.0,0.0,0.0,0.0,646.55,1749.17,0.0,2395.72,3193.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3193.99,0.0,0.0,0.0,0.0,0.0,498.74,0.0,0.0,0.0,0.0,498.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.019,0.0,0.0,0.0,0.0,0.105,0.0,0.0,0.0,0.585,0.0,0.0,0.0,0.0,0.0,0.58,0.0,0.0,0.0,1.909,0.0,0.0,0.321,0.0,0.0,5.037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.389,11.875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.314,27.314,0.0,8.556,8.556,0.0,16.264,0.0,2.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6047.0,0.0,-167.0,800.0,633.0,0.0,210.0,0.0,0.0,430.0,4520.0,244.0,0.0,0.0,8229.0,101.0,2723.0,0.0,232.0,0.0,0.0,1505.0,442.0,0.0,0.0,6047.0,2246.0,1623.0,82.04,45.68,0.017,1.913,0.0,0.0,0.0,0.0,0.585,911.3,845.5,840.4,4.833,4.833,0.0,0.0,0.0,0.0,0.0,0.0,208.12,105.6,0.0,313.72,0.0,0.0,0.0,14.8,140.4,155.2,0.0,0.0,0.0,517.55,48.63,0.0,48.63,0.0,0.0,0.0,0.0,0.0,0.0,239.82,108.0,0.0,347.82,0.0,0.0,0.0,19.19,97.2,116.39,0.0,0.0,0.0,467.95,3.74,0.0,3.74,0.0,0.0,0.0,0.0,0.0,0.0,300.89,120.0,0.0,420.89,0.0,0.0,0.0,178.91,132.0,310.91,0.0,0.0,0.0,769.21,37.41,0.0,37.41,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,55.4,0.0,854.0,0.0,0.0,6.05,0.0,50.0,0.0,975.8,975.8,0.0,87.8,14.15,11.63,11.7,0.66,0.66,0.66,0.23,0.21,0.22,17.55,12.82,0.72,0.72,6725.0,0.91
project_testing-0054.osw,0,3.007,0.058,2.398,0.091,0.0,-0.17,4.867,0.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.571,0.0,-0.111,0.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.75,613.9,0.0,0.0,0.0,109.43,0.0,0.0,0.0,0.0,0.0,75.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.83,0.0,99.5,0.0,0.0,128.35,0.0,0.0,281.01,0.0,1390.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,558.34,0.0,0.0,558.34,1949.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1949.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,1.066,7.915,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,1.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.648,0.0,0.0,2.775,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.515,25.515,0.0,21.724,21.724,0.0,3.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17221.0,0.0,0.0,1501.0,3098.0,400.0,4999.0,3771.0,295.0,2561.0,68.0,2322.0,4060.0,0.0,0.0,0.0,14109.0,356.0,676.0,2573.0,353.0,0.0,126.0,7167.0,0.0,0.0,0.0,11860.0,906.0,736.0,95.0,32.9,11.727,0.0,0.0,0.0,0.0,0.0,1.772,3238.5,3238.5,1224.1,10.695,0.0,0.0,640.0,0.0,0.0,0.0,0.0,566.64,96.0,0.0,662.64,0.0,0.0,0.0,3.56,108.0,111.56,0.0,0.0,0.0,774.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,795.09,144.0,0.0,939.09,0.0,0.0,0.0,39.28,144.0,183.28,0.0,0.0,0.0,1122.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.01,120.0,0.0,884.01,0.0,0.0,0.0,41.7,132.0,173.7,0.0,0.0,0.0,1057.71,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,69.89,273.0,0.0,273.0,0.0,273.0,273.0,0.0,53.2,305.2,17.22,0.0,0.0,0.0,66.0,0.0,374.3,435.7,187.3,29.6,17.0,11.87,13.54,2.15,0.98,0.96,0.27,0.26,0.25,17.0,10.45,2.94,1.13,5105.0,3.24
project_testing-0055.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.229,0.0,0.015,0.0,5.984,-14.802,0.121,-1.783,6.626,0.004,0.0,0.0,0.0,0.0,0.0,2.845,0.0,1.249,-0.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.19,21.61,11.19,0.0,0.0,3.88,0.0,0.0,137.17,0.0,0.0,0.0,0.0,0.16,0.0,82.48,17.06,20.17,0.0,350.45,76.05,0.0,0.0,3282.19,0.0,0.0,2249.06,0.0,48.64,0.0,0.0,161.38,0.0,3282.19,93.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1595.74,0.0,0.0,0.0,1595.74,784.59,52.1,0.0,801.69,0.0,0.0,0.0,489.78,0.0,0.0,5724.76,0.0,7852.93,12731.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12731.46,0.0,0.0,0.0,0.0,0.0,0.6,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.163,0.401,0.202,0.0,0.0,0.09,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.004,0.0,1.495,0.346,0.356,0.0,6.157,1.377,0.0,0.0,0.0,0.0,41.063,0.0,1.052,0.0,0.0,2.86,0.0,1.659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.146,0.0,0.0,0.0,5.326,0.354,0.0,5.443,0.0,0.0,0.0,3.325,0.0,0.0,38.865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.115,121.115,0.0,59.654,59.654,8.146,53.312,0.0,0.003,0.0,2767.6,0.0,1354.3,14551.6,0.0,0.0,20882.0,0.0,7752.0,400.0,8152.0,0.0,186.0,0.0,0.0,5810.0,4060.0,0.0,0.0,0.0,14098.0,1941.0,2101.0,0.0,223.0,0.0,0.0,16576.0,0.0,0.0,0.0,20881.0,2666.0,1417.0,95.0,32.9,0.039,0.045,0.0,8.277,0.0,7.889,2.351,3970.5,2785.5,3970.5,5.04,5.174,0.0,0.0,0.0,0.0,0.0,0.0,1555.97,96.0,0.0,1651.97,228.55,0.0,228.55,50.11,108.0,158.11,0.0,0.0,0.0,2038.67,0.04,0.0,0.04,0.0,0.0,0.0,0.0,0.0,0.0,2183.26,144.0,0.0,2327.26,284.89,0.0,284.89,552.51,144.0,696.51,0.0,0.0,0.0,3308.71,0.05,0.0,0.05,0.0,0.0,0.0,0.0,0.0,0.0,2097.93,120.0,0.0,2217.93,123.06,0.0,123.06,586.44,132.0,718.44,0.0,0.0,0.0,3059.48,0.05,0.0,0.05,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,126.4,0.0,0.0,0.0,0.0,10.44,10.44,30.0,0.0,475.1,475.1,0.0,57.0,18.65,19.05,18.96,2.65,3.36,3.14,1.45,1.44,1.45,18.82,18.73,3.33,3.76,426.0,3.97
project_testing-0056.osw,0,-0.0,0.016,0.0,-0.0,0.0,-0.014,2.056,-0.005,0.112,0.043,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,0.0,-0.124,0.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,48.96,16.77,0.0,216.7,0.0,62.62,0.0,591.37,0.0,0.0,0.0,0.0,0.0,714.18,0.0,50.87,27.72,0.0,217.8,161.92,0.0,0.0,6576.5,0.0,580.06,555.86,873.67,715.47,0.0,239.97,1502.56,0.0,6576.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,420.92,0.0,0.0,294.6,0.0,0.0,0.0,0.0,0.0,777.6,0.0,0.0,1493.12,8069.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8069.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.072,0.0,0.957,0.0,0.242,0.0,2.431,0.0,0.0,0.0,0.0,0.0,2.714,0.0,0.299,0.099,0.0,0.835,0.654,0.0,0.0,0.0,2.295,2.237,4.719,3.864,0.0,0.968,6.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.858,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,5.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.915,38.915,0.0,28.778,28.778,0.0,10.137,0.0,0.0,0.0,987.9,526.2,2702.2,6855.9,1472.0,0.0,0.0,0.0,577.0,400.0,977.0,0.0,178.0,0.0,0.0,181.0,4060.0,0.0,0.0,0.0,6086.0,169.0,1498.0,0.0,394.0,0.0,0.0,1257.0,0.0,0.0,0.0,5308.0,1224.0,2432.0,89.6,4.28,2.347,0.0,0.0,6.397,0.0,3.924,0.0,3481.8,2405.0,3481.8,3.143,0.0,0.0,77.0,0.0,0.0,0.0,0.0,733.76,118.8,0.0,852.56,0.0,0.0,0.0,9.22,104.4,113.62,0.0,0.0,0.0,966.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1206.18,144.0,0.0,1350.18,0.0,0.0,0.0,90.14,144.0,234.14,0.0,0.0,0.0,1584.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1012.08,120.0,0.0,1132.08,0.0,0.0,0.0,111.5,132.0,243.5,0.0,0.0,0.0,1375.58,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,20.0,0.0,0.0,1.47,0.0,0.0,0.0,0.0,0.0,406.6,406.6,0.0,48.7,11.78,11.67,11.42,1.65,2.0,1.64,0.5,0.41,0.46,9.45,11.82,2.3,3.08,512.0,3.48
-project_testing-0057.osw,0,0.0,0.075,0.0,-0.208,0.0,-0.183,2.367,-0.109,0.0,0.0,0.0,0.0,1.281,0.0,0.0,0.0,-0.656,0.0,-0.264,2.764,0.0,0.23,0.0,0.256,0.0,0.537,-1.897,-0.275,0.0,0.0,0.0,0.0,1.985,0.0,0.0,0.0,-0.385,0.0,2.008,-0.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-128.64,0.0,0.0,0.0,0.0,36.47,0.0,0.0,0.0,65.21,0.0,9.69,0.0,0.0,0.0,0.0,0.0,7.34,0.0,0.0,0.0,0.0,0.0,0.0,-454.18,0.0,0.0,0.0,0.0,0.0,-536.56,0.0,92.31,0.0,82.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,478.84,0.0,0.0,0.0,0.0,0.0,465.37,467.65,0.0,0.0,0.0,933.02,1015.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.669,0.0,0.0,0.0,0.0,1.968,0.0,0.0,0.0,1.94,0.0,0.135,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-62.176,0.0,2.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.617,2.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,-49.083,13.093,0.0,-54.331,7.845,0.0,0.0,5.248,0.0,0.0,0.0,0.0,0.0,0.0,3821.0,0.0,4967.0,0.0,-42.0,1000.0,958.0,0.0,132.0,0.0,82.0,108.0,4750.0,1265.0,0.0,0.0,8549.0,0.0,2212.0,0.0,146.0,0.0,282.0,728.0,1060.0,0.0,0.0,4967.0,672.0,2080.0,82.04,45.68,5.026,1.975,0.0,0.0,0.0,0.0,2.072,968.1,892.9,968.1,2.867,3.601,8753.0,0.0,0.0,0.0,0.0,0.0,190.17,105.6,-667.85,-372.08,0.0,0.0,0.0,0.0,0.0,0.0,160.41,0.0,160.41,-211.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,552.77,144.0,-1030.45,-333.68,0.0,0.0,0.0,0.0,0.0,0.0,154.41,0.0,154.41,-179.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,274.94,510.0,-832.24,-47.3,0.0,0.0,0.0,0.0,0.0,0.0,114.58,0.0,114.58,67.28,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,623.0,623.0,0.0,80.2,623.0,3.82,0.0,4.47,0.5,40.0,0.0,565.5,565.5,282.7,101.8,8.22,9.04,8.4,0.7,0.51,0.53,0.19,0.15,0.15,8.27,9.09,0.78,0.58,11.0,0.97
-project_testing-0058.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-101.41,0.0,0.0,0.0,0.0,0.0,63.75,0.0,0.0,133.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.52,0.0,0.0,0.0,39.17,0.0,0.0,-1500.15,0.0,0.0,0.0,0.0,14.98,-1763.3,0.0,99.83,0.0,263.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,963.77,0.0,0.0,0.0,0.0,0.0,963.77,-536.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1226.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.25,0.0,0.0,0.0,0.0,0.0,1.041,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.301,0.0,0.0,0.0,0.634,0.0,0.0,0.0,0.0,0.0,0.0,0.343,-51.393,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-38.453,12.94,0.0,-44.996,6.397,0.0,6.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1498.0,1200.0,2698.0,0.0,0.0,0.0,635.0,1057.0,4980.0,453.0,0.0,0.0,8220.0,438.0,657.0,0.0,0.0,0.0,2564.0,6049.0,1634.0,0.0,0.0,12627.0,1779.0,602.0,87.98,17.6,0.608,-1.393,0.0,0.0,0.0,0.0,4.186,1020.1,1020.1,602.9,5.323,0.0,8749.006,0.0,0.0,0.0,0.0,0.0,175.46,105.6,-571.07,-290.01,0.0,0.0,0.0,6.15,118.8,124.95,0.0,0.0,0.0,-165.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,373.57,144.0,-769.18,-251.61,0.0,0.0,0.0,93.11,144.0,237.11,0.0,0.0,0.0,-14.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,224.0,510.0,-685.54,48.45,0.0,0.0,0.0,71.97,132.0,203.97,0.0,0.0,0.0,252.42,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,1138.0,0.0,1138.0,1138.0,60.6,108.6,1138.0,0.0,0.0,0.0,0.0,50.0,0.0,563.3,563.3,281.6,33.8,9.0,9.49,8.87,0.65,0.34,0.48,0.14,0.13,0.14,9.18,9.27,0.95,0.77,5217.0,1.02
+project_testing-0057.osw,0,0.0,0.075,0.0,-0.208,0.0,-0.183,2.367,-0.109,0.0,0.0,0.0,0.0,1.281,0.0,0.0,0.0,-0.656,0.0,-0.264,2.764,0.0,0.23,0.0,0.256,0.0,0.537,-1.897,-0.275,0.0,0.0,0.0,0.0,1.985,0.0,0.0,0.0,-0.385,0.0,2.008,-0.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-128.64,0.0,0.0,0.0,0.0,36.47,0.0,0.0,0.0,65.21,0.0,9.69,0.0,0.0,0.0,0.0,0.0,7.34,0.0,0.0,0.0,0.0,0.0,0.0,-454.18,0.0,0.0,0.0,0.0,0.0,-536.56,0.0,92.31,0.0,82.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,478.84,0.0,0.0,0.0,0.0,0.0,465.37,467.65,0.0,0.0,0.0,933.02,1015.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.669,0.0,0.0,0.0,0.0,1.968,0.0,0.0,0.0,1.94,0.0,0.135,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-62.176,0.0,2.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.617,2.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,-49.083,13.093,0.0,-54.331,7.845,0.0,0.0,5.248,0.0,0.0,0.0,0.0,0.0,0.0,3821.0,0.0,4967.0,0.0,-42.0,1000.0,958.0,0.0,132.0,0.0,82.0,108.0,4750.0,1265.0,0.0,0.0,8549.0,0.0,2212.0,0.0,146.0,0.0,282.0,728.0,1060.0,0.0,0.0,4967.0,672.0,2080.0,82.04,45.68,5.026,1.975,0.0,0.0,0.0,0.0,2.072,968.1,892.9,968.1,2.867,3.601,8753.0,0.0,0.0,0.0,0.0,0.0,190.17,195.6,-2185.68,-1799.91,0.0,0.0,0.0,0.0,0.0,0.0,160.41,0.0,160.41,-1639.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,216.77,498.0,-2185.68,-1470.91,0.0,0.0,0.0,0.0,0.0,0.0,206.24,0.0,206.24,-1264.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,274.94,510.0,-832.24,-47.3,0.0,0.0,0.0,0.0,0.0,0.0,114.58,0.0,114.58,67.28,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,623.0,623.0,0.0,80.2,623.0,3.82,0.0,4.47,0.5,40.0,0.0,565.5,565.5,282.7,101.8,8.22,9.04,8.4,0.7,0.51,0.53,0.19,0.15,0.15,8.27,9.09,0.78,0.58,11.0,0.97
+project_testing-0058.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-101.41,0.0,0.0,0.0,0.0,0.0,63.75,0.0,0.0,133.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.52,0.0,0.0,0.0,39.17,0.0,0.0,-1500.15,0.0,0.0,0.0,0.0,14.98,-1763.3,0.0,99.83,0.0,263.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,963.77,0.0,0.0,0.0,0.0,0.0,963.77,-536.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1226.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.25,0.0,0.0,0.0,0.0,0.0,1.041,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.301,0.0,0.0,0.0,0.634,0.0,0.0,0.0,0.0,0.0,0.0,0.343,-51.393,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-38.453,12.94,0.0,-44.996,6.397,0.0,6.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1498.0,1200.0,2698.0,0.0,0.0,0.0,635.0,1057.0,4980.0,453.0,0.0,0.0,8220.0,438.0,657.0,0.0,0.0,0.0,2564.0,6049.0,1634.0,0.0,0.0,12627.0,1779.0,602.0,87.98,17.6,0.608,-1.393,0.0,0.0,0.0,0.0,4.186,1020.1,1020.1,602.9,5.323,0.0,8749.006,0.0,0.0,0.0,0.0,0.0,175.46,495.6,-637.01,34.05,0.0,0.0,0.0,6.15,118.8,124.95,0.0,0.0,0.0,159.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,373.57,144.0,-769.18,-251.61,0.0,0.0,0.0,93.11,144.0,237.11,0.0,0.0,0.0,-14.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,224.0,510.0,-685.54,48.45,0.0,0.0,0.0,71.97,132.0,203.97,0.0,0.0,0.0,252.42,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,1138.0,0.0,1138.0,1138.0,60.6,108.6,1138.0,0.0,0.0,0.0,0.0,50.0,0.0,563.3,563.3,281.6,33.8,9.0,9.49,8.87,0.65,0.34,0.48,0.14,0.13,0.14,9.18,9.27,0.95,0.77,5217.0,1.02
project_testing-0059.osw,0,0.0,-0.003,0.0,0.0,0.0,-0.108,2.359,-0.001,0.116,-0.108,0.0,0.0,0.0,0.0,0.0,0.0,-0.391,0.0,-0.099,0.436,-0.001,1.161,0.0,-0.001,0.0,4.071,-10.761,-0.007,-0.753,3.963,0.0,0.0,0.0,0.0,0.0,0.0,12.207,0.0,4.065,-1.343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.41,46.54,21.62,322.36,0.0,0.0,0.0,0.0,0.0,114.75,0.0,0.0,1089.84,643.84,352.43,52.49,32.37,0.0,345.31,324.04,0.0,0.0,7026.24,0.0,1114.32,565.7,0.0,0.0,0.0,452.3,980.91,0.0,7026.24,452.01,0.0,0.0,0.0,0.0,0.0,0.0,2187.87,0.0,0.0,0.0,0.0,2187.87,968.55,1149.24,0.0,16.41,0.0,0.0,0.0,345.75,0.0,1493.8,0.0,0.0,3973.75,13187.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13187.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.207,0.111,1.403,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,3.787,2.525,1.495,0.328,0.116,0.0,1.333,1.294,0.0,0.0,0.0,4.409,2.28,0.0,0.0,0.0,2.001,4.033,0.0,1.747,0.0,0.0,0.0,0.0,0.0,0.0,11.168,0.0,0.0,0.0,0.0,6.575,7.802,0.0,0.111,0.0,0.0,0.0,2.347,0.0,10.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.103,66.103,0.0,27.958,27.958,11.168,26.977,0.0,0.0,0.0,2845.9,0.0,960.1,11686.7,3100.0,0.0,11544.0,0.0,832.0,800.0,1632.0,0.0,282.0,0.0,0.0,392.0,4520.0,0.0,0.0,0.0,8377.0,1380.0,1802.0,0.0,626.0,0.0,0.0,3172.0,0.0,0.0,0.0,11544.0,5448.0,2298.0,89.6,4.28,2.173,12.726,0.0,8.46,0.0,5.792,1.383,3670.9,2494.7,3670.9,2.017,16.029,0.0,152.0,41.0,0.0,0.0,0.0,712.84,118.8,0.0,831.64,273.18,0.0,273.18,24.55,104.4,128.95,0.0,0.0,0.0,1233.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1171.8,144.0,0.0,1315.8,356.61,0.0,356.61,239.9,144.0,383.9,0.0,0.0,0.0,2056.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,983.23,120.0,0.0,1103.23,168.73,0.0,168.73,296.75,132.0,428.75,0.0,0.0,0.0,1700.71,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,40.8,0.0,0.0,3.1,0.0,8.08,3.46,50.0,0.0,975.8,975.8,0.0,52.2,13.86,16.34,13.28,1.6,1.98,1.5,0.39,0.61,0.38,15.09,16.73,2.13,3.04,8589.0,3.67
project_testing-0060.osw,0,0.0,0.69,0.0,1.399,0.0,0.208,16.474,-0.268,0.0,2.587,0.0,0.0,1.861,0.0,0.0,0.0,14.452,0.0,2.221,4.897,0.0,0.637,0.0,3.47,0.0,0.488,-6.892,-0.331,0.0,3.661,0.0,0.0,0.124,0.0,0.0,0.0,8.825,0.0,2.445,-1.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,362.13,1004.85,545.53,0.0,0.0,180.14,0.0,1.04,0.0,0.0,791.94,37.29,0.0,26.63,0.0,0.0,0.0,46.74,0.0,0.0,3764.71,123.12,124.37,0.0,0.0,213.92,0.0,0.0,307.03,0.0,3764.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1888.16,0.0,1888.16,5652.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5652.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.341,14.738,8.606,0.0,0.0,3.193,0.0,0.022,0.0,0.0,16.738,0.675,0.0,0.442,0.0,0.0,0.0,0.846,0.0,0.0,2.087,2.06,0.0,0.0,4.625,0.0,0.0,5.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.633,77.633,0.0,64.814,64.814,0.0,12.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38579.0,0.0,23557.0,0.0,2740.0,1000.0,3740.0,0.0,590.0,0.0,1431.0,2054.0,4750.0,634.0,0.0,0.0,21486.0,8907.0,3120.0,0.0,707.0,0.0,3539.0,4584.0,1340.0,0.0,0.0,23557.0,10477.0,2910.0,95.0,32.9,51.734,16.191,0.0,0.0,0.0,0.0,2.123,7757.6,4656.7,7757.6,24.489,23.864,0.0,1438.0,143.0,0.0,0.0,0.0,1690.58,96.0,0.0,1786.58,0.0,0.0,0.0,12.05,108.0,120.05,0.0,0.0,0.0,1906.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2372.14,144.0,0.0,2516.14,0.0,0.0,0.0,132.85,144.0,276.85,0.0,0.0,0.0,2792.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2279.43,120.0,0.0,2399.43,0.0,0.0,0.0,141.0,132.0,273.0,0.0,0.0,0.0,2672.43,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1698.0,0.0,0.0,1698.0,80.9,0.0,1698.0,38.58,0.0,23.56,0.0,80.0,0.0,1376.0,1376.0,0.0,206.4,11.85,4.68,8.44,3.86,5.82,3.29,0.57,0.78,0.52,12.0,3.45,4.5,7.44,797.0,7.76
-project_testing-0061.osw,0,0.574,0.172,0.0,0.0,5.667,0.412,8.486,-0.152,0.0,0.0,0.0,0.133,0.0,0.0,0.0,2.58,3.439,0.0,1.555,6.959,2.793,0.318,0.0,0.0,4.681,6.82,-3.673,-0.159,0.0,0.0,0.0,0.778,0.0,0.0,0.0,1.568,20.451,0.0,11.204,-6.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-346.85,0.0,0.0,0.0,253.68,446.92,169.43,0.0,0.0,66.51,0.0,98.35,16.04,400.22,1397.8,0.0,0.0,13.28,0.0,0.0,0.0,0.0,0.0,0.0,1370.85,0.0,0.0,0.0,0.0,0.0,-1461.08,0.0,316.55,0.0,2831.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,2524.0,0.0,0.0,0.0,0.0,0.0,1153.14,0.0,0.0,0.0,0.0,1153.14,3985.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.648,0.0,0.0,0.0,4.392,7.811,2.776,0.0,0.0,1.092,0.0,1.406,0.21,5.243,19.864,0.0,0.0,0.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-41.025,0.0,5.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.378,55.402,0.0,7.892,48.917,0.0,0.0,6.486,0.0,0.0,0.0,0.0,0.0,0.0,25498.0,24172.0,28035.0,0.0,631.0,1000.0,1631.0,591.0,112.0,0.0,0.0,445.0,4750.0,0.0,0.0,0.0,11387.0,1887.0,3603.0,1408.0,210.0,0.0,0.0,3598.0,0.0,0.0,1971.0,26857.0,13647.0,6024.0,87.98,17.6,29.759,38.959,5.453,0.0,0.0,0.0,0.0,6606.4,3101.2,6606.4,17.739,25.939,21.249,72.0,0.0,0.0,0.0,0.0,1347.42,105.6,-1130.01,323.01,0.0,0.0,0.0,0.0,0.0,0.0,276.13,0.0,276.13,599.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2868.71,144.0,-2405.83,606.88,0.0,0.0,0.0,0.0,0.0,0.0,240.86,0.0,240.86,847.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1720.11,390.0,-1442.56,667.55,0.0,0.0,0.0,0.0,0.0,0.0,141.61,0.0,141.61,809.16,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,1655.0,0.0,3310.0,0.0,1655.0,3310.0,0.0,131.0,1850.4,25.5,24.17,25.35,2.69,0.0,169.8,1358.4,1588.2,1358.4,244.6,12.75,11.2,11.19,2.42,2.42,1.15,1.27,1.5,0.46,11.18,9.18,3.06,5.19,535.0,6.61
+project_testing-0061.osw,0,0.574,0.172,0.0,0.0,5.667,0.412,8.486,-0.152,0.0,0.0,0.0,0.133,0.0,0.0,0.0,2.58,3.439,0.0,1.555,6.959,2.793,0.318,0.0,0.0,4.681,6.82,-3.673,-0.159,0.0,0.0,0.0,0.778,0.0,0.0,0.0,1.568,20.451,0.0,11.204,-6.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-346.85,0.0,0.0,0.0,253.68,446.92,169.43,0.0,0.0,66.51,0.0,98.35,16.04,400.22,1397.8,0.0,0.0,13.28,0.0,0.0,0.0,0.0,0.0,0.0,1370.85,0.0,0.0,0.0,0.0,0.0,-1461.08,0.0,316.55,0.0,2831.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,2524.0,0.0,0.0,0.0,0.0,0.0,1153.14,0.0,0.0,0.0,0.0,1153.14,3985.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.648,0.0,0.0,0.0,4.392,7.811,2.776,0.0,0.0,1.092,0.0,1.406,0.21,5.243,19.864,0.0,0.0,0.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-41.025,0.0,5.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.378,55.402,0.0,7.892,48.917,0.0,0.0,6.486,0.0,0.0,0.0,0.0,0.0,0.0,25498.0,24172.0,28035.0,0.0,631.0,1000.0,1631.0,591.0,112.0,0.0,0.0,445.0,4750.0,0.0,0.0,0.0,11387.0,1887.0,3603.0,1408.0,210.0,0.0,0.0,3598.0,0.0,0.0,1971.0,26857.0,13647.0,6024.0,87.98,17.6,29.759,38.959,5.453,0.0,0.0,0.0,0.0,6606.4,3101.2,6606.4,17.739,25.939,21.249,72.0,0.0,0.0,0.0,0.0,1347.42,375.6,-1130.01,593.01,0.0,0.0,0.0,0.0,0.0,0.0,276.13,0.0,276.13,869.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2868.71,144.0,-2405.83,606.88,0.0,0.0,0.0,0.0,0.0,0.0,240.86,0.0,240.86,847.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1720.11,390.0,-1442.56,667.55,0.0,0.0,0.0,0.0,0.0,0.0,141.61,0.0,141.61,809.16,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,1655.0,0.0,3310.0,0.0,1655.0,3310.0,0.0,131.0,1850.4,25.5,24.17,25.35,2.69,0.0,169.8,1358.4,1588.2,1358.4,244.6,12.75,11.2,11.19,2.42,2.42,1.15,1.27,1.5,0.46,11.18,9.18,3.06,5.19,535.0,6.61
project_testing-0062.osw,0,0.0,0.021,0.0,0.434,0.0,0.044,0.756,-0.045,0.0,0.049,0.0,0.0,1.226,0.0,0.0,0.0,0.107,0.0,0.03,0.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,89.05,300.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.59,0.0,0.0,0.0,23.1,0.0,0.0,1055.96,158.36,158.93,0.0,0.0,0.0,0.0,0.0,316.55,0.0,1055.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,4929.21,0.0,0.0,0.0,0.0,0.0,0.0,3873.25,0.0,0.0,0.0,3873.25,4929.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,1.648,4.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,0.0,0.374,0.0,0.0,2.505,2.474,0.0,0.0,0.0,0.0,0.0,5.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.121,39.121,0.0,17.337,17.337,0.0,0.0,21.784,0.0,0.0,0.0,0.0,0.0,0.0,2772.0,0.0,0.0,0.0,2138.0,1200.0,3338.0,0.0,168.0,0.0,895.0,1508.0,4980.0,7118.0,0.0,0.0,23492.0,1456.0,7366.0,0.0,314.0,0.0,3613.0,11675.0,10865.0,0.0,0.0,42725.0,4854.0,11403.0,87.98,17.6,9.762,-1.764,0.0,0.0,0.0,0.0,4.279,1739.0,1739.0,1073.1,6.644,0.0,0.0,7.0,0.0,0.0,0.0,0.0,477.61,105.6,0.0,583.21,0.0,0.0,0.0,0.0,0.0,0.0,927.5,0.0,927.5,1510.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1016.85,144.0,0.0,1160.85,0.0,0.0,0.0,0.0,0.0,0.0,809.02,0.0,809.02,1969.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,609.72,120.0,0.0,729.72,0.0,0.0,0.0,0.0,0.0,0.0,475.64,0.0,475.64,1205.36,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2115.0,0.0,2115.0,2115.0,35.6,148.0,2115.0,2.77,0.0,0.0,0.0,50.0,0.0,1042.0,1042.0,1042.0,187.6,15.17,14.05,11.17,1.53,0.72,1.05,0.7,0.22,0.3,15.27,13.09,1.73,1.08,4911.0,1.74
project_testing-0063.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.814,0.0,46.326,0.0,10.186,-32.152,0.366,-3.61,35.897,0.0,0.0,24.317,0.0,0.0,0.0,27.557,0.0,17.345,-8.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.1,198.25,82.49,0.0,0.0,0.0,359.85,1559.1,591.37,0.0,0.0,0.0,0.0,0.0,0.0,351.88,91.24,90.57,0.0,1480.91,494.04,0.0,0.0,15026.14,0.0,0.0,7799.12,0.0,284.73,0.0,51.74,939.39,0.0,15026.14,627.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,21307.3,0.0,0.0,0.0,0.0,0.0,21307.3,71939.15,2086.83,0.0,0.0,0.0,0.0,32295.18,0.0,0.0,0.0,1223.69,35605.7,71939.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.093,0.883,0.37,0.0,0.0,0.0,1.473,6.319,2.431,0.0,0.0,0.0,0.0,0.0,0.0,1.494,0.47,0.323,0.0,5.768,1.997,0.0,0.0,0.0,0.0,31.478,0.0,1.538,0.0,0.235,3.862,0.0,2.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.652,0.0,0.0,0.0,0.0,0.0,11.737,0.0,0.0,0.0,0.0,181.638,0.0,0.0,0.0,6.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,406.071,406.071,0.0,61.162,61.162,0.0,144.652,200.257,0.0,0.0,5080.8,3212.4,5184.5,89173.4,0.0,0.0,77496.0,0.0,4649.0,1200.0,5849.0,0.0,237.0,0.0,4269.0,3286.0,4980.0,4421.0,0.0,0.0,28874.0,6927.0,4755.0,0.0,526.0,0.0,20628.0,19708.0,12363.0,0.0,0.0,77496.0,15107.0,9164.0,89.6,4.28,0.0,120.496,0.0,57.243,0.0,11.035,1.895,4344.1,3517.3,4344.1,0.0,81.027,0.0,0.0,515.0,0.0,0.0,0.0,1559.46,118.8,0.0,1678.26,0.0,0.0,0.0,131.63,104.4,236.03,7433.12,0.0,7433.12,9347.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2563.49,144.0,0.0,2707.49,0.0,0.0,0.0,1286.33,144.0,1430.33,4626.19,0.0,4626.19,8764.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2150.97,120.0,0.0,2270.97,0.0,0.0,0.0,1591.18,132.0,1723.18,4372.42,0.0,4372.42,8366.57,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,5587.0,0.0,0.0,5587.0,181.9,0.0,5587.0,0.0,0.0,77.5,0.0,50.0,0.0,2496.0,2496.0,0.0,410.1,17.12,18.04,17.5,2.78,3.28,3.0,1.46,1.45,1.46,18.55,18.09,3.26,4.03,618.0,4.34
-project_testing-0064.osw,0,0.0,0.119,0.0,0.011,0.0,0.917,0.853,0.031,0.0,2.151,0.0,0.0,4.385,0.0,0.0,0.0,13.181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,498.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.46,0.0,23.72,0.0,0.0,0.0,89.51,0.0,0.0,-478.69,0.0,0.0,0.0,0.0,453.82,-1854.5,0.0,154.64,0.0,1375.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-478.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1375.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.845,0.0,0.407,0.0,0.0,0.0,1.62,0.0,0.0,0.0,0.0,0.0,0.0,9.811,-37.589,0.0,2.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.983,24.606,0.0,-12.983,24.606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8707.0,0.0,0.0,0.0,8647.0,1200.0,9847.0,0.0,186.0,0.0,0.0,6482.0,4980.0,3052.0,0.0,0.0,30852.0,16152.0,0.0,0.0,223.0,0.0,0.0,18165.0,6452.0,0.0,0.0,48642.0,23802.0,0.0,95.0,32.9,22.011,0.0,0.0,0.0,0.0,0.0,1.204,2390.0,2390.0,2074.9,13.114,0.0,0.0,922.0,0.0,0.0,0.0,0.0,641.81,96.0,-755.95,-18.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-18.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,900.55,144.0,-1014.7,29.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,865.36,390.0,-998.52,256.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,256.83,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,6348.0,0.0,0.0,0.0,154.8,0.0,6348.0,8.71,0.0,0.0,0.0,66.0,0.0,2660.4,2660.4,0.0,0.0,12.66,10.89,12.11,1.81,1.64,1.58,0.23,0.16,0.19,10.82,11.09,2.27,1.98,5195.0,2.39
+project_testing-0064.osw,0,0.0,0.119,0.0,0.011,0.0,0.917,0.853,0.031,0.0,2.151,0.0,0.0,4.385,0.0,0.0,0.0,13.181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,498.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.46,0.0,23.72,0.0,0.0,0.0,89.51,0.0,0.0,-478.69,0.0,0.0,0.0,0.0,453.82,-1854.5,0.0,154.64,0.0,1375.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-478.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1375.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.845,0.0,0.407,0.0,0.0,0.0,1.62,0.0,0.0,0.0,0.0,0.0,0.0,9.811,-37.589,0.0,2.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.983,24.606,0.0,-12.983,24.606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8707.0,0.0,0.0,0.0,8647.0,1200.0,9847.0,0.0,186.0,0.0,0.0,6482.0,4980.0,3052.0,0.0,0.0,30852.0,16152.0,0.0,0.0,223.0,0.0,0.0,18165.0,6452.0,0.0,0.0,48642.0,23802.0,0.0,95.0,32.9,22.011,0.0,0.0,0.0,0.0,0.0,1.204,2390.0,2390.0,2074.9,13.114,0.0,0.0,922.0,0.0,0.0,0.0,0.0,641.81,366.0,-980.43,27.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,900.55,144.0,-1014.7,29.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,865.36,390.0,-998.52,256.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,256.83,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,6348.0,0.0,0.0,0.0,154.8,0.0,6348.0,8.71,0.0,0.0,0.0,66.0,0.0,2660.4,2660.4,0.0,0.0,12.66,10.89,12.11,1.81,1.64,1.58,0.23,0.16,0.19,10.82,11.09,2.27,1.98,5195.0,2.39
project_testing-0065.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472,25.05,-2.66,0.0,308.141,-10.517,-0.502,-5.056,1.591,0.0,0.0,2.34,0.0,0.0,0.0,6.825,0.0,13.571,-11.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.25,19.83,5.35,0.0,0.0,0.0,33.21,0.0,0.0,0.0,468.81,0.0,0.0,20073.47,0.0,0.76,10.16,48.15,0.0,480.8,3.18,0.0,0.0,22182.92,0.0,240.33,351.9,0.0,27.53,0.0,0.0,309.27,0.0,22182.92,97.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,994.13,0.0,0.0,0.0,994.13,724.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1267.23,0.0,0.0,1991.39,35320.27,0.0,0.0,0.0,0.0,0.0,10151.84,0.0,0.0,0.0,0.0,10151.84,35320.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.37,0.103,0.0,0.0,0.0,0.559,0.0,0.0,0.0,6.704,0.0,0.0,287.048,0.0,0.013,0.256,0.672,0.0,7.57,0.056,0.0,0.0,0.0,3.741,5.675,0.0,0.63,0.0,0.0,5.078,0.0,1.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.075,0.0,0.0,0.0,4.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,395.834,395.834,0.0,320.143,320.143,5.075,13.519,57.097,0.0,0.0,1418.8,1218.6,679.1,6104.0,0.0,0.0,207752.0,0.0,27680.0,400.0,28080.0,0.0,112.0,0.0,93.0,19522.0,4060.0,426.0,0.0,0.0,31077.0,663.0,6201.0,0.0,210.0,36852.0,374.0,158076.0,1151.0,0.0,0.0,207752.0,3565.0,7525.0,87.98,17.6,0.0,327.873,0.0,5.096,0.0,3.777,2.541,59085.0,5788.1,59085.0,0.0,234.216,0.0,0.0,103.0,0.0,0.0,0.0,8819.53,105.6,0.0,8925.13,127.78,0.0,127.78,12.71,118.8,131.51,2430.98,0.0,2430.98,11615.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18777.12,144.0,0.0,18921.12,181.11,0.0,181.11,192.4,144.0,336.4,2120.45,0.0,2120.45,21559.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11258.97,120.0,0.0,11378.97,76.67,0.0,76.67,148.71,132.0,280.71,1246.66,0.0,1246.66,12983.01,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,610.09,0.0,0.0,2152.0,0.0,717.3,2152.0,0.0,86.2,802.0,0.0,0.0,190.66,17.09,30.0,0.0,1375.1,1375.1,606.9,123.8,17.35,10.42,11.49,1.58,26.93,4.97,0.5,13.39,0.74,14.27,13.82,2.47,56.69,537.0,59.08
-project_testing-0066.osw,0,0.0,-0.077,0.0,0.0,0.0,-2.669,20.132,-0.045,1.104,0.019,-0.086,0.0,1.013,0.0,0.0,1.283,-1.039,0.0,-0.608,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-150.88,18.34,0.0,0.0,64.7,571.42,13.34,60.41,279.22,61.61,0.0,0.0,0.0,0.0,0.0,2864.4,83.22,0.0,14.42,0.0,133.06,2.57,0.0,0.0,3418.01,0.0,0.0,1132.5,0.0,555.25,-2678.72,167.8,210.16,0.0,6096.73,15.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,44.6,0.0,19.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.5,3482.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6161.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.489,0.325,0.0,0.0,0.951,8.369,0.312,1.038,5.053,1.092,0.0,0.0,0.0,0.0,0.0,54.546,1.494,0.0,0.254,0.0,2.343,0.056,0.0,0.0,0.0,0.0,20.687,0.0,12.004,-54.295,3.161,3.725,0.0,0.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303,0.0,0.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.325,116.62,0.0,61.887,116.182,0.0,0.438,0.0,0.0,0.0,0.0,2263.0,1909.0,26303.4,16079.0,0.0,0.0,0.0,6606.0,400.0,7006.0,0.0,295.0,0.0,0.0,4952.0,4060.0,1003.0,0.0,0.0,12725.0,1538.0,878.0,0.0,353.0,0.0,0.0,15281.0,1495.0,0.0,1960.0,22722.0,2511.0,1122.0,95.0,32.9,20.342,-0.335,0.0,12.943,0.0,0.0,0.949,11702.3,7377.2,11702.3,10.398,0.0,1.104,0.0,0.0,0.0,0.0,0.0,3030.24,96.0,-1416.01,1710.23,0.0,0.0,0.0,0.41,108.0,108.41,0.0,0.0,0.0,1818.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4251.88,144.0,-1986.87,2409.01,0.0,0.0,0.0,4.54,144.0,148.54,0.0,0.0,0.0,2557.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4085.71,510.0,-1909.22,2686.49,0.0,0.0,0.0,4.82,132.0,136.82,0.0,0.0,0.0,2823.31,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,854.0,854.0,0.0,0.0,854.0,16.08,0.0,0.0,0.0,30.0,82.8,662.2,662.2,0.0,39.8,12.67,14.17,13.5,6.19,7.71,7.21,1.45,1.19,1.27,14.27,11.55,7.99,9.61,8747.0,11.7
+project_testing-0066.osw,0,0.0,-0.077,0.0,0.0,0.0,-2.669,20.132,-0.045,1.104,0.019,-0.086,0.0,1.013,0.0,0.0,1.283,-1.039,0.0,-0.608,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-150.88,18.34,0.0,0.0,64.7,571.42,13.34,60.41,279.22,61.61,0.0,0.0,0.0,0.0,0.0,2864.4,83.22,0.0,14.42,0.0,133.06,2.57,0.0,0.0,3418.01,0.0,0.0,1132.5,0.0,555.25,-2678.72,167.8,210.16,0.0,6096.73,15.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,44.6,0.0,19.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.5,3482.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6161.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.489,0.325,0.0,0.0,0.951,8.369,0.312,1.038,5.053,1.092,0.0,0.0,0.0,0.0,0.0,54.546,1.494,0.0,0.254,0.0,2.343,0.056,0.0,0.0,0.0,0.0,20.687,0.0,12.004,-54.295,3.161,3.725,0.0,0.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303,0.0,0.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.325,116.62,0.0,61.887,116.182,0.0,0.438,0.0,0.0,0.0,0.0,2263.0,1909.0,26303.4,16079.0,0.0,0.0,0.0,6606.0,400.0,7006.0,0.0,295.0,0.0,0.0,4952.0,4060.0,1003.0,0.0,0.0,12725.0,1538.0,878.0,0.0,353.0,0.0,0.0,15281.0,1495.0,0.0,1960.0,22722.0,2511.0,1122.0,95.0,32.9,20.342,-0.335,0.0,12.943,0.0,0.0,0.949,11702.3,7377.2,11702.3,10.398,0.0,1.104,0.0,0.0,0.0,0.0,0.0,3030.24,486.0,-1416.01,2100.23,0.0,0.0,0.0,0.41,108.0,108.41,0.0,0.0,0.0,2208.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4251.88,144.0,-1986.87,2409.01,0.0,0.0,0.0,4.54,144.0,148.54,0.0,0.0,0.0,2557.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4085.71,510.0,-1909.22,2686.49,0.0,0.0,0.0,4.82,132.0,136.82,0.0,0.0,0.0,2823.31,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,854.0,854.0,0.0,0.0,854.0,16.08,0.0,0.0,0.0,30.0,82.8,662.2,662.2,0.0,39.8,12.67,14.17,13.5,6.19,7.71,7.21,1.45,1.19,1.27,14.27,11.55,7.99,9.61,8747.0,11.7
project_testing-0067.osw,0,-0.001,0.028,0.0,-0.002,0.0,-0.059,3.004,-0.029,0.0,0.032,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,0.0,0.064,1.084,-0.009,1.71,0.0,-0.011,0.0,1.918,-3.628,-0.079,0.0,2.817,0.0,0.0,0.0,0.0,0.0,0.0,1.544,0.0,3.651,-1.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,101.79,112.54,0.0,0.0,194.47,0.0,32.26,0.0,0.0,100.6,0.0,0.0,0.0,0.0,0.0,0.0,102.91,0.0,0.0,1004.07,0.0,0.0,0.0,0.0,187.29,0.0,0.0,172.21,0.0,1004.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1905.8,0.0,0.0,0.0,1905.8,0.0,0.0,0.0,0.0,0.0,976.35,0.0,0.0,0.0,0.0,0.0,0.0,976.35,3886.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3886.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,1.789,1.674,0.0,0.0,3.193,0.0,0.433,0.0,0.0,1.353,0.0,0.0,0.0,0.0,0.0,0.0,1.665,0.0,0.0,0.0,0.0,0.0,0.0,4.284,0.0,0.0,2.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.573,33.573,0.0,17.218,17.218,9.726,6.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4136.0,0.0,5223.0,0.0,1290.0,1000.0,2290.0,0.0,400.0,0.0,0.0,340.0,4750.0,0.0,0.0,0.0,7721.0,195.0,2035.0,0.0,749.0,0.0,0.0,1852.0,0.0,0.0,0.0,5223.0,812.0,1810.0,87.98,17.6,5.895,6.763,0.0,0.0,0.0,0.0,3.263,1642.1,1642.1,1119.6,5.438,5.831,0.0,0.0,0.0,0.0,0.0,0.0,474.34,105.6,0.0,579.94,244.91,0.0,244.91,6.23,118.8,125.03,0.0,0.0,0.0,949.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1009.9,144.0,0.0,1153.9,347.12,0.0,347.12,94.33,144.0,238.33,0.0,0.0,0.0,1739.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,605.55,120.0,0.0,725.55,146.95,0.0,146.95,72.91,132.0,204.91,0.0,0.0,0.0,1077.41,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,55.7,0.0,0.0,4.14,0.0,4.18,1.05,40.0,0.0,348.6,348.6,0.0,62.8,7.33,9.59,8.75,1.18,0.83,0.81,0.46,0.33,0.29,9.91,10.0,1.55,1.0,5480.0,1.64
-project_testing-0068.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.774,0.0,0.064,0.0,0.334,-14.442,0.272,0.0,3.063,0.058,0.0,0.0,0.0,0.0,0.0,6.952,0.0,6.421,-1.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1090.97,47.95,621.33,35.76,0.0,0.0,583.07,182.68,1246.78,776.59,0.0,1.46,0.0,0.0,0.0,0.0,0.0,53.57,0.0,0.0,0.0,16.97,0.0,0.0,1791.78,0.0,896.07,2371.18,0.0,0.0,-5135.96,477.64,707.65,0.0,6927.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,13.2,0.0,0.0,1096.7,278.03,0.0,1201.22,0.0,0.0,2589.15,4467.32,0.0,0.0,0.0,0.0,0.0,49.48,0.0,0.0,0.0,0.0,49.48,9603.27,0.0,0.0,0.0,0.0,0.0,36.9,0.0,0.0,0.0,0.0,36.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.666,0.186,2.829,0.165,0.0,0.0,2.068,0.755,5.053,3.193,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,0.0,0.056,0.0,0.0,0.0,3.546,9.612,0.0,0.0,-33.12,2.083,2.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.0,0.0,7.445,1.888,0.0,8.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.383,51.502,0.0,0.342,33.462,0.0,17.577,0.278,0.185,0.0,631.0,1639.5,4983.9,17404.3,0.0,0.0,5858.0,0.0,25.0,600.0,625.0,0.0,118.0,0.0,0.0,17.0,4290.0,0.0,0.0,0.0,7491.0,970.0,2095.0,0.0,263.0,0.0,0.0,161.0,0.0,0.0,0.0,5857.0,2491.0,2943.0,89.6,4.28,1.694,1.6,0.0,14.715,0.0,9.096,0.0,4555.3,3468.6,4555.3,7.538,9.38,4.918,0.0,14.0,0.0,0.0,0.0,853.05,118.8,-844.32,127.53,0.0,0.0,0.0,16.0,104.4,120.4,10.33,0.0,10.33,261.69,3.43,0.0,3.43,0.0,0.0,0.0,0.0,0.0,0.0,1402.27,144.0,-1387.92,158.35,0.0,0.0,0.0,156.31,144.0,300.31,6.43,0.0,6.43,467.86,2.77,0.0,2.77,0.0,0.0,0.0,0.0,0.0,0.0,1176.62,390.0,-1164.57,402.04,0.0,0.0,0.0,193.35,132.0,325.35,6.08,0.0,6.08,736.24,2.77,0.0,2.77,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.93,2.93,0.0,0.0,214.0,214.0,0.0,38.6,13.22,14.02,13.51,2.37,2.51,2.25,0.72,0.69,0.71,12.91,16.0,3.28,3.94,8149.0,4.56
-project_testing-0069.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-191.83,0.0,0.0,0.0,0.0,0.0,18.89,0.0,0.0,148.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.67,0.0,0.0,0.0,21.62,0.0,0.0,9.68,115.56,115.97,0.0,0.0,13.28,-406.92,0.0,163.35,0.0,416.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,0.0,0.0,0.0,0.0,0.0,1654.29,0.0,1654.29,2564.03,0.0,0.0,0.0,0.0,0.0,0.0,900.05,0.0,0.0,0.0,900.05,2970.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.363,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,0.0,0.35,0.0,0.0,1.828,1.805,0.0,0.0,0.304,-11.86,0.0,2.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.674,26.534,0.0,-1.619,10.241,0.0,11.231,5.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,775.0,600.0,1375.0,0.0,112.0,0.0,0.0,496.0,4290.0,257.0,0.0,0.0,11416.0,689.0,5571.0,0.0,210.0,0.0,0.0,3911.0,695.0,0.0,0.0,13156.0,2153.0,6188.0,87.98,17.6,0.083,-0.368,0.0,0.0,0.0,0.0,3.922,1191.6,1191.6,980.0,5.757,0.0,337.76,0.0,0.0,0.0,0.0,0.0,282.11,105.6,-296.34,91.37,0.0,0.0,0.0,10.56,118.8,129.36,215.53,0.0,215.53,436.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,600.62,144.0,-614.85,129.77,0.0,0.0,0.0,159.83,144.0,303.83,188.0,0.0,188.0,621.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,360.14,210.0,-376.74,193.4,0.0,0.0,0.0,123.54,132.0,255.54,110.53,0.0,110.53,559.47,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,623.0,0.0,0.0,623.0,11.7,0.0,623.0,0.0,0.0,0.0,0.0,30.0,0.0,565.5,565.5,0.0,101.8,14.19,15.43,14.54,0.72,0.57,0.68,0.26,0.22,0.25,10.45,13.27,1.06,0.86,4900.0,1.19
-project_testing-0070.osw,0,0.021,0.095,0.0,0.0,0.0,0.305,3.505,0.13,0.0,0.44,0.0,0.0,0.0,0.0,0.0,5.769,1.752,0.0,0.591,3.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-316.16,0.0,0.0,0.0,6.53,521.8,7.79,0.0,0.0,194.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.89,0.0,0.0,0.0,84.44,0.0,0.0,-74.88,0.0,0.0,0.0,0.0,199.78,-949.47,0.0,166.05,0.0,874.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,0.0,0.0,0.0,0.0,0.0,1865.81,0.0,1865.81,1790.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2740.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.599,0.0,0.0,0.0,0.092,7.525,0.102,0.0,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,0.0,1.366,0.0,0.0,0.0,0.0,0.0,0.0,4.57,-27.673,0.0,2.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.358,33.032,0.0,-7.309,20.365,0.0,12.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9530.0,0.0,0.0,0.0,1180.0,1200.0,2380.0,0.0,112.0,0.0,0.0,634.0,4980.0,0.0,0.0,0.0,9848.0,1276.0,2846.0,0.0,210.0,0.0,0.0,4728.0,0.0,0.0,3926.0,15509.0,4147.0,2497.0,87.98,17.6,16.529,-0.029,0.0,0.0,0.0,0.0,0.0,2698.7,2496.0,931.7,12.685,0.0,132.391,626.0,0.0,0.0,0.0,0.0,560.38,105.6,-624.64,41.34,0.0,0.0,0.0,11.91,118.8,130.71,0.0,0.0,0.0,172.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1193.08,144.0,-1257.34,79.74,0.0,0.0,0.0,180.26,144.0,324.26,0.0,0.0,0.0,404.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,715.38,330.0,-790.35,255.03,0.0,0.0,0.0,139.33,132.0,271.33,0.0,0.0,0.0,526.36,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,1138.0,0.0,45.7,0.0,0.0,9.53,0.0,0.0,0.0,0.0,140.8,1126.6,1126.6,0.0,101.4,16.19,10.98,16.23,2.03,0.86,1.3,0.3,0.27,0.28,17.36,10.82,2.43,0.97,5967.0,2.7
-project_testing-0071.osw,0,0.0,-0.017,0.0,-1.022,0.0,-0.307,9.925,0.05,1.935,0.041,0.0,0.0,2.313,0.0,0.0,0.0,0.665,0.0,0.0,0.0,0.0,1.083,0.0,17.497,0.0,11.607,-18.167,0.082,-4.444,4.23,0.0,0.0,17.129,0.0,0.0,0.0,15.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,276.7,1461.1,466.57,288.56,1559.1,532.4,0.0,204.44,0.0,0.0,0.0,0.0,348.16,49.76,176.84,0.0,1938.38,587.19,0.0,0.0,11869.99,0.0,1489.04,857.32,0.0,0.0,-570.66,406.17,1194.91,0.0,12440.65,604.0,0.0,0.0,0.0,0.0,0.0,0.0,12209.79,4139.52,0.0,0.0,0.0,16349.31,0.0,1535.7,0.0,756.25,0.0,0.0,0.0,5.54,0.0,1996.12,0.0,0.0,4293.62,32512.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33083.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,0.0,0.0,0.0,0.0,0.0,0.0,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.113,5.873,2.042,1.16,6.319,2.189,0.0,0.755,0.0,0.0,0.0,0.0,1.495,0.316,0.631,0.0,7.669,2.361,0.0,0.0,0.0,5.892,3.471,0.0,0.0,-3.68,1.826,4.913,0.0,2.335,0.0,0.0,0.0,0.0,0.0,0.0,62.327,21.131,0.0,0.0,0.0,0.0,10.426,0.0,5.134,0.0,0.0,0.0,0.038,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.285,162.965,0.0,46.68,50.36,83.457,29.149,0.0,0.0,0.0,0.0,2528.2,1098.6,14918.6,9180.0,0.0,33588.0,0.0,1940.0,1000.0,2940.0,0.0,237.0,0.0,1612.0,1004.0,4750.0,2286.0,0.0,0.0,11744.0,1855.0,0.0,0.0,526.0,0.0,7788.0,8439.0,8302.0,0.0,0.0,33588.0,8533.0,0.0,89.6,4.28,14.983,45.257,0.0,10.334,0.0,6.238,4.091,4204.7,4179.9,3249.5,12.155,49.014,0.0,241.0,112.0,0.0,0.0,0.0,1284.04,118.8,-93.83,1309.01,2041.39,0.0,2041.39,26.53,104.4,130.93,0.0,0.0,0.0,3481.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2110.75,144.0,-154.24,2100.51,2664.79,0.0,2664.79,259.21,144.0,403.21,0.0,0.0,0.0,5168.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1771.09,150.0,-129.42,1791.67,1260.86,0.0,1260.86,320.64,132.0,452.64,0.0,0.0,0.0,3505.17,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2678.0,0.0,0.0,2678.0,76.5,0.0,2678.0,9.18,0.0,26.87,6.72,40.0,0.0,1728.0,1728.0,0.0,0.0,17.06,16.97,17.35,3.21,2.48,2.76,1.43,0.9,0.98,18.91,17.82,3.94,3.11,5947.0,4.2
-project_testing-0072.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.723,2.338,1.449,0.0,0.632,-20.28,0.031,-1.078,7.993,0.0,0.0,11.408,0.0,0.0,0.0,1.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,10.4,3.83,0.0,0.0,31.79,15.18,228.11,65.21,0.0,8.37,0.0,0.0,0.0,104.55,42.4,3.89,10.85,0.0,67.26,22.54,0.0,0.0,1684.84,0.0,0.0,895.23,0.0,0.0,0.0,0.0,168.21,0.0,1684.84,7.02,0.0,0.0,0.0,0.0,0.0,0.0,1038.6,0.0,0.0,0.0,0.0,1038.6,0.0,0.0,0.0,13.7,0.0,0.0,0.0,288.61,0.0,0.0,0.0,0.0,302.31,3974.51,948.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,948.76,3974.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.168,0.0,0.0,0.509,0.503,6.319,1.94,0.0,0.125,0.0,0.0,0.0,2.737,1.494,0.36,0.234,0.0,1.963,0.619,0.0,0.0,0.0,0.0,24.808,0.0,0.0,0.0,0.0,5.003,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,5.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,0.0,0.0,0.0,1.959,0.0,0.0,0.0,0.0,5.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.059,60.059,0.0,47.369,47.369,5.302,2.052,5.336,0.0,0.0,2309.3,1097.1,1624.0,17017.7,0.0,0.0,13861.0,0.0,-173.0,1000.0,827.0,0.0,210.0,0.0,125.0,444.0,4750.0,5479.0,0.0,0.0,11073.0,65.0,0.0,0.0,232.0,6772.0,432.0,1886.0,4095.0,0.0,0.0,13861.0,444.0,0.0,82.04,45.68,0.636,4.772,0.0,10.077,0.0,8.777,1.33,3882.5,2763.4,3882.5,5.385,14.508,0.0,0.0,3.0,0.0,0.0,0.0,1152.25,105.6,0.0,1257.85,144.94,0.0,144.94,1.87,140.4,142.27,163.11,0.0,163.11,1708.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3349.26,144.0,0.0,3493.26,185.42,0.0,185.42,26.25,144.0,170.25,157.02,0.0,157.02,4005.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.91,120.0,0.0,1785.91,80.1,0.0,80.1,22.58,132.0,154.58,116.51,0.0,116.51,2137.1,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,199.36,0.0,0.0,623.0,0.0,623.0,623.0,52.0,80.2,623.0,0.0,0.0,13.86,0.0,80.0,0.0,297.6,297.6,148.8,0.0,13.41,15.21,14.45,2.04,3.01,2.52,1.17,1.18,1.17,13.45,16.0,2.39,3.25,8048.0,3.88
+project_testing-0068.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.774,0.0,0.064,0.0,0.334,-14.442,0.272,0.0,3.063,0.058,0.0,0.0,0.0,0.0,0.0,6.952,0.0,6.421,-1.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1090.97,47.95,621.33,35.76,0.0,0.0,583.07,182.68,1246.78,776.59,0.0,1.46,0.0,0.0,0.0,0.0,0.0,53.57,0.0,0.0,0.0,16.97,0.0,0.0,1791.78,0.0,896.07,2371.18,0.0,0.0,-5135.96,477.64,707.65,0.0,6927.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,13.2,0.0,0.0,1096.7,278.03,0.0,1201.22,0.0,0.0,2589.15,4467.32,0.0,0.0,0.0,0.0,0.0,49.48,0.0,0.0,0.0,0.0,49.48,9603.27,0.0,0.0,0.0,0.0,0.0,36.9,0.0,0.0,0.0,0.0,36.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.666,0.186,2.829,0.165,0.0,0.0,2.068,0.755,5.053,3.193,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,0.0,0.056,0.0,0.0,0.0,3.546,9.612,0.0,0.0,-33.12,2.083,2.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.0,0.0,7.445,1.888,0.0,8.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.383,51.502,0.0,0.342,33.462,0.0,17.577,0.278,0.185,0.0,631.0,1639.5,4983.9,17404.3,0.0,0.0,5858.0,0.0,25.0,600.0,625.0,0.0,118.0,0.0,0.0,17.0,4290.0,0.0,0.0,0.0,7491.0,970.0,2095.0,0.0,263.0,0.0,0.0,161.0,0.0,0.0,0.0,5857.0,2491.0,2943.0,89.6,4.28,1.694,1.6,0.0,14.715,0.0,9.096,0.0,4555.3,3468.6,4555.3,7.538,9.38,4.918,0.0,14.0,0.0,0.0,0.0,853.05,388.8,-844.32,397.53,0.0,0.0,0.0,16.0,104.4,120.4,10.33,0.0,10.33,531.69,3.43,0.0,3.43,0.0,0.0,0.0,0.0,0.0,0.0,1402.27,144.0,-1387.92,158.35,0.0,0.0,0.0,156.31,144.0,300.31,6.43,0.0,6.43,467.86,2.77,0.0,2.77,0.0,0.0,0.0,0.0,0.0,0.0,1176.62,390.0,-1164.57,402.04,0.0,0.0,0.0,193.35,132.0,325.35,6.08,0.0,6.08,736.24,2.77,0.0,2.77,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.93,2.93,0.0,0.0,214.0,214.0,0.0,38.6,13.22,14.02,13.51,2.37,2.51,2.25,0.72,0.69,0.71,12.91,16.0,3.28,3.94,8149.0,4.56
+project_testing-0069.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-191.83,0.0,0.0,0.0,0.0,0.0,18.89,0.0,0.0,148.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.67,0.0,0.0,0.0,21.62,0.0,0.0,9.68,115.56,115.97,0.0,0.0,13.28,-406.92,0.0,163.35,0.0,416.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,0.0,0.0,0.0,0.0,0.0,1654.29,0.0,1654.29,2564.03,0.0,0.0,0.0,0.0,0.0,0.0,900.05,0.0,0.0,0.0,900.05,2970.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.363,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,0.0,0.35,0.0,0.0,1.828,1.805,0.0,0.0,0.304,-11.86,0.0,2.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.674,26.534,0.0,-1.619,10.241,0.0,11.231,5.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,775.0,600.0,1375.0,0.0,112.0,0.0,0.0,496.0,4290.0,257.0,0.0,0.0,11416.0,689.0,5571.0,0.0,210.0,0.0,0.0,3911.0,695.0,0.0,0.0,13156.0,2153.0,6188.0,87.98,17.6,0.083,-0.368,0.0,0.0,0.0,0.0,3.922,1191.6,1191.6,980.0,5.757,0.0,337.76,0.0,0.0,0.0,0.0,0.0,282.11,195.6,-298.71,179.0,0.0,0.0,0.0,10.56,118.8,129.36,215.53,0.0,215.53,523.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,600.62,144.0,-614.85,129.77,0.0,0.0,0.0,159.83,144.0,303.83,188.0,0.0,188.0,621.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,360.14,210.0,-376.74,193.4,0.0,0.0,0.0,123.54,132.0,255.54,110.53,0.0,110.53,559.47,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,623.0,0.0,0.0,623.0,11.7,0.0,623.0,0.0,0.0,0.0,0.0,30.0,0.0,565.5,565.5,0.0,101.8,14.19,15.43,14.54,0.72,0.57,0.68,0.26,0.22,0.25,10.45,13.27,1.06,0.86,4900.0,1.19
+project_testing-0070.osw,0,0.021,0.095,0.0,0.0,0.0,0.305,3.505,0.13,0.0,0.44,0.0,0.0,0.0,0.0,0.0,5.769,1.752,0.0,0.591,3.543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-316.16,0.0,0.0,0.0,6.53,521.8,7.79,0.0,0.0,194.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.89,0.0,0.0,0.0,84.44,0.0,0.0,-74.88,0.0,0.0,0.0,0.0,199.78,-949.47,0.0,166.05,0.0,874.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,0.0,0.0,0.0,0.0,0.0,1865.81,0.0,1865.81,1790.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2740.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.599,0.0,0.0,0.0,0.092,7.525,0.102,0.0,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,0.0,1.366,0.0,0.0,0.0,0.0,0.0,0.0,4.57,-27.673,0.0,2.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.358,33.032,0.0,-7.309,20.365,0.0,12.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9530.0,0.0,0.0,0.0,1180.0,1200.0,2380.0,0.0,112.0,0.0,0.0,634.0,4980.0,0.0,0.0,0.0,9848.0,1276.0,2846.0,0.0,210.0,0.0,0.0,4728.0,0.0,0.0,3926.0,15509.0,4147.0,2497.0,87.98,17.6,16.529,-0.029,0.0,0.0,0.0,0.0,0.0,2698.7,2496.0,931.7,12.685,0.0,132.391,626.0,0.0,0.0,0.0,0.0,560.38,315.6,-635.35,240.63,0.0,0.0,0.0,11.91,118.8,130.71,0.0,0.0,0.0,371.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1193.08,144.0,-1257.34,79.74,0.0,0.0,0.0,180.26,144.0,324.26,0.0,0.0,0.0,404.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,715.38,330.0,-790.35,255.03,0.0,0.0,0.0,139.33,132.0,271.33,0.0,0.0,0.0,526.36,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1138.0,0.0,1138.0,0.0,45.7,0.0,0.0,9.53,0.0,0.0,0.0,0.0,140.8,1126.6,1126.6,0.0,101.4,16.19,10.98,16.23,2.03,0.86,1.3,0.3,0.27,0.28,17.36,10.82,2.43,0.97,5967.0,2.7
+project_testing-0071.osw,0,0.0,-0.017,0.0,-1.022,0.0,-0.307,9.925,0.05,1.935,0.041,0.0,0.0,2.313,0.0,0.0,0.0,0.665,0.0,0.0,0.0,0.0,1.083,0.0,17.497,0.0,11.607,-18.167,0.082,-4.444,4.23,0.0,0.0,17.129,0.0,0.0,0.0,15.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,276.7,1461.1,466.57,288.56,1559.1,532.4,0.0,204.44,0.0,0.0,0.0,0.0,348.16,49.76,176.84,0.0,1938.38,587.19,0.0,0.0,11869.99,0.0,1489.04,857.32,0.0,0.0,-570.66,406.17,1194.91,0.0,12440.65,604.0,0.0,0.0,0.0,0.0,0.0,0.0,12209.79,4139.52,0.0,0.0,0.0,16349.31,0.0,1535.7,0.0,756.25,0.0,0.0,0.0,5.54,0.0,1996.12,0.0,0.0,4293.62,32512.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33083.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,0.0,0.0,0.0,0.0,0.0,0.0,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.113,5.873,2.042,1.16,6.319,2.189,0.0,0.755,0.0,0.0,0.0,0.0,1.495,0.316,0.631,0.0,7.669,2.361,0.0,0.0,0.0,5.892,3.471,0.0,0.0,-3.68,1.826,4.913,0.0,2.335,0.0,0.0,0.0,0.0,0.0,0.0,62.327,21.131,0.0,0.0,0.0,0.0,10.426,0.0,5.134,0.0,0.0,0.0,0.038,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.285,162.965,0.0,46.68,50.36,83.457,29.149,0.0,0.0,0.0,0.0,2528.2,1098.6,14918.6,9180.0,0.0,33588.0,0.0,1940.0,1000.0,2940.0,0.0,237.0,0.0,1612.0,1004.0,4750.0,2286.0,0.0,0.0,11744.0,1855.0,0.0,0.0,526.0,0.0,7788.0,8439.0,8302.0,0.0,0.0,33588.0,8533.0,0.0,89.6,4.28,14.983,45.257,0.0,10.334,0.0,6.238,4.091,4204.7,4179.9,3249.5,12.155,49.014,0.0,241.0,112.0,0.0,0.0,0.0,1284.04,148.8,-93.83,1339.01,2041.39,0.0,2041.39,26.53,104.4,130.93,0.0,0.0,0.0,3511.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2110.75,144.0,-154.24,2100.51,2664.79,0.0,2664.79,259.21,144.0,403.21,0.0,0.0,0.0,5168.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1771.09,150.0,-129.42,1791.67,1260.86,0.0,1260.86,320.64,132.0,452.64,0.0,0.0,0.0,3505.17,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2678.0,0.0,0.0,2678.0,76.5,0.0,2678.0,9.18,0.0,26.87,6.72,40.0,0.0,1728.0,1728.0,0.0,0.0,17.06,16.97,17.35,3.21,2.48,2.76,1.43,0.9,0.98,18.91,17.82,3.94,3.11,5947.0,4.2
+project_testing-0072.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.723,2.338,1.449,0.0,0.632,-20.28,0.031,-1.078,7.993,0.0,0.0,11.408,0.0,0.0,0.0,1.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,10.4,3.83,0.0,0.0,31.79,15.18,228.11,65.21,0.0,8.37,0.0,0.0,0.0,104.55,42.4,3.89,10.85,0.0,67.26,22.54,0.0,0.0,1684.84,0.0,0.0,895.23,0.0,0.0,0.0,0.0,168.21,0.0,1684.84,7.02,0.0,0.0,0.0,0.0,0.0,0.0,1038.6,0.0,0.0,0.0,0.0,1038.6,0.0,0.0,0.0,13.7,0.0,0.0,0.0,288.61,0.0,0.0,0.0,0.0,302.31,3974.51,948.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,948.76,3974.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.168,0.0,0.0,0.509,0.503,6.319,1.94,0.0,0.125,0.0,0.0,0.0,2.737,1.494,0.36,0.234,0.0,1.963,0.619,0.0,0.0,0.0,0.0,24.808,0.0,0.0,0.0,0.0,5.003,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,5.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,0.0,0.0,0.0,1.959,0.0,0.0,0.0,0.0,5.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.059,60.059,0.0,47.369,47.369,5.302,2.052,5.336,0.0,0.0,2309.3,1097.1,1624.0,17017.7,0.0,0.0,13861.0,0.0,-173.0,1000.0,827.0,0.0,210.0,0.0,125.0,444.0,4750.0,5479.0,0.0,0.0,11073.0,65.0,0.0,0.0,232.0,6772.0,432.0,1886.0,4095.0,0.0,0.0,13861.0,444.0,0.0,82.04,45.68,0.636,4.772,0.0,10.077,0.0,8.777,1.33,3882.5,2763.4,3882.5,5.385,14.508,0.0,0.0,3.0,0.0,0.0,0.0,1152.25,105.6,0.0,1257.85,144.94,0.0,144.94,1.87,140.4,142.27,163.11,0.0,163.11,1708.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1696.73,108.0,0.0,1804.73,102.98,0.0,102.98,2.42,97.2,99.62,209.72,0.0,209.72,2217.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.91,120.0,0.0,1785.91,80.1,0.0,80.1,22.58,132.0,154.58,116.51,0.0,116.51,2137.1,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,199.36,0.0,0.0,623.0,0.0,623.0,623.0,52.0,80.2,623.0,0.0,0.0,13.86,0.0,80.0,0.0,297.6,297.6,148.8,0.0,13.41,15.21,14.45,2.04,3.01,2.52,1.17,1.18,1.17,13.45,16.0,2.39,3.25,8048.0,3.88
project_testing-0073.osw,0,0.029,0.344,0.0,0.041,0.0,-0.012,15.83,-0.018,0.0,-3.122,0.0,0.0,0.0,0.0,0.0,0.0,-0.731,0.0,-1.636,3.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.3,6.9,6.73,9.5,704.66,80.42,20.68,0.0,123.49,0.0,0.0,0.0,0.0,0.0,32.92,0.0,18.03,0.0,0.0,0.0,45.76,0.0,0.0,2057.23,0.0,0.0,250.8,335.69,27.49,0.0,89.72,207.11,0.0,2057.23,79.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,253.25,29.44,0.0,13.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,295.83,2353.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2353.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.325,0.129,0.127,0.124,9.407,1.346,0.348,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.733,0.0,0.34,0.0,0.0,0.0,0.815,0.0,0.0,0.0,0.0,4.57,7.257,0.594,0.0,1.618,3.671,0.0,1.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.719,0.2,0.0,0.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.001,37.001,0.0,34.993,34.993,0.0,2.008,0.0,0.0,0.0,486.0,728.2,1704.4,5104.9,12179.0,0.0,0.0,0.0,2141.0,600.0,2741.0,0.0,590.0,0.0,0.0,1605.0,4290.0,0.0,0.0,0.0,9204.0,612.0,2107.0,0.0,707.0,0.0,0.0,3015.0,0.0,0.0,0.0,7936.0,1857.0,2357.0,95.0,32.9,16.432,-0.968,0.0,3.544,0.0,3.792,0.981,5071.5,5071.5,3579.1,14.699,0.0,0.0,1029.0,0.0,0.0,0.0,0.0,912.73,96.0,0.0,1008.73,0.0,0.0,0.0,1.89,108.0,109.89,0.0,0.0,0.0,1118.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1280.69,144.0,0.0,1424.69,0.0,0.0,0.0,20.81,144.0,164.81,0.0,0.0,0.0,1589.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1230.64,120.0,0.0,1350.64,0.0,0.0,0.0,22.09,132.0,154.09,0.0,0.0,0.0,1504.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,0.0,72.6,0.0,0.0,12.18,0.0,0.0,0.0,30.0,0.0,929.4,929.4,0.0,83.6,10.81,10.92,12.12,3.5,1.74,1.91,0.39,0.41,0.39,8.27,9.36,4.56,2.28,4352.0,5.07
-project_testing-0074.osw,0,0.0,0.259,0.0,-13.953,0.0,-1.979,8.027,-0.895,3.478,-0.14,-0.851,0.0,9.041,0.0,0.0,0.0,1.113,0.0,-0.697,12.302,0.0,1.41,0.0,133.011,0.0,69.292,-12.545,-0.911,-7.195,2.235,0.0,0.0,27.513,0.0,0.0,0.0,14.565,0.0,24.181,-14.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.23,24.05,231.72,11.06,282.41,1427.86,0.0,57.9,1246.78,532.4,0.0,891.9,380.43,25069.53,21089.05,367.42,0.0,52.17,189.29,0.0,2645.88,19.73,0.0,0.0,58893.21,0.0,0.0,2775.49,1631.99,133.65,-1711.99,289.91,817.29,0.0,60605.2,439.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,1117.5,0.0,15.96,0.0,0.0,0.0,4.03,0.0,0.0,0.0,0.0,1137.49,60030.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61742.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.093,1.129,0.055,1.271,6.48,0.0,0.231,5.053,2.189,0.0,3.351,1.282,84.181,78.314,1.452,0.0,0.304,0.676,0.0,10.673,0.075,0.0,0.0,0.0,0.0,11.285,8.815,0.722,-11.04,1.265,3.36,0.0,1.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.587,0.0,0.108,0.0,0.0,0.0,0.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,220.646,231.686,0.0,212.923,223.963,0.0,7.722,0.0,0.0,0.0,210.7,484.2,2638.5,8673.7,67730.0,172181.0,67730.0,0.0,9082.0,1000.0,10082.0,0.0,423.0,0.0,14336.0,6420.0,4750.0,6193.0,0.0,0.0,46443.0,2047.0,12274.0,0.0,939.0,0.0,69279.0,59567.0,17320.0,0.0,0.0,172181.0,8591.0,16486.0,89.6,4.28,15.544,238.912,85.463,6.608,0.0,3.482,1.683,55213.9,10431.9,55213.9,51.299,175.055,0.049,4.0,10.0,0.0,0.0,0.0,5710.44,118.8,-281.49,5547.75,0.0,0.0,0.0,7.03,104.4,111.43,0.0,0.0,0.0,5659.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9387.02,144.0,-462.72,9068.3,0.0,0.0,0.0,68.67,144.0,212.67,0.0,0.0,0.0,9280.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7876.46,210.0,-388.26,7698.21,0.0,0.0,0.0,84.94,132.0,216.94,0.0,0.0,0.0,7915.15,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,5587.0,0.0,0.0,5587.0,0.0,0.0,5587.0,67.73,172.18,67.73,0.0,66.0,0.0,2496.0,2496.0,0.0,374.4,14.24,9.64,9.54,4.95,16.03,4.04,0.84,8.49,0.96,15.18,9.45,7.87,45.95,802.0,55.21
+project_testing-0074.osw,0,0.0,0.259,0.0,-13.953,0.0,-1.979,8.027,-0.895,3.478,-0.14,-0.851,0.0,9.041,0.0,0.0,0.0,1.113,0.0,-0.697,12.302,0.0,1.41,0.0,133.011,0.0,69.292,-12.545,-0.911,-7.195,2.235,0.0,0.0,27.513,0.0,0.0,0.0,14.565,0.0,24.181,-14.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.23,24.05,231.72,11.06,282.41,1427.86,0.0,57.9,1246.78,532.4,0.0,891.9,380.43,25069.53,21089.05,367.42,0.0,52.17,189.29,0.0,2645.88,19.73,0.0,0.0,58893.21,0.0,0.0,2775.49,1631.99,133.65,-1711.99,289.91,817.29,0.0,60605.2,439.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,1117.5,0.0,15.96,0.0,0.0,0.0,4.03,0.0,0.0,0.0,0.0,1137.49,60030.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61742.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.093,1.129,0.055,1.271,6.48,0.0,0.231,5.053,2.189,0.0,3.351,1.282,84.181,78.314,1.452,0.0,0.304,0.676,0.0,10.673,0.075,0.0,0.0,0.0,0.0,11.285,8.815,0.722,-11.04,1.265,3.36,0.0,1.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.587,0.0,0.108,0.0,0.0,0.0,0.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,220.646,231.686,0.0,212.923,223.963,0.0,7.722,0.0,0.0,0.0,210.7,484.2,2638.5,8673.7,67730.0,172181.0,67730.0,0.0,9082.0,1000.0,10082.0,0.0,423.0,0.0,14336.0,6420.0,4750.0,6193.0,0.0,0.0,46443.0,2047.0,12274.0,0.0,939.0,0.0,69279.0,59567.0,17320.0,0.0,0.0,172181.0,8591.0,16486.0,89.6,4.28,15.544,238.912,85.463,6.608,0.0,3.482,1.683,55213.9,10431.9,55213.9,51.299,175.055,0.049,4.0,10.0,0.0,0.0,0.0,5710.44,208.8,-281.49,5637.75,0.0,0.0,0.0,7.03,104.4,111.43,0.0,0.0,0.0,5749.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9387.02,144.0,-462.72,9068.3,0.0,0.0,0.0,68.67,144.0,212.67,0.0,0.0,0.0,9280.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7876.46,210.0,-388.26,7698.21,0.0,0.0,0.0,84.94,132.0,216.94,0.0,0.0,0.0,7915.15,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,5587.0,0.0,0.0,5587.0,0.0,0.0,5587.0,67.73,172.18,67.73,0.0,66.0,0.0,2496.0,2496.0,0.0,374.4,14.24,9.64,9.54,4.95,16.03,4.04,0.84,8.49,0.96,15.18,9.45,7.87,45.95,802.0,55.21
project_testing-0075.osw,0,0.045,0.662,0.0,0.057,0.0,4.329,61.522,-0.132,17.469,4.456,0.0,0.0,0.0,0.0,0.0,0.0,10.795,0.0,2.965,6.866,0.027,0.151,0.0,0.042,0.0,4.866,-7.636,-0.147,-1.777,2.971,0.0,0.0,0.0,0.0,0.0,0.0,4.338,0.0,0.967,-0.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.34,13.37,6.04,532.29,2061.26,0.0,41.34,349.16,137.17,0.0,8.1,0.0,0.0,69.25,0.0,0.0,18.81,76.66,0.0,1103.73,70.81,0.0,0.0,9627.19,373.28,377.09,2831.35,594.0,486.44,0.0,95.36,223.48,0.0,9627.19,139.85,0.0,0.0,0.0,0.0,0.0,0.0,492.62,1004.36,0.0,0.0,0.0,1496.99,494.78,52.1,0.0,801.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1348.57,12472.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12472.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.253,0.11,8.482,32.321,0.0,0.705,6.319,2.431,0.0,0.168,0.0,0.0,1.445,0.0,0.0,0.352,1.352,0.0,19.246,1.285,0.0,0.0,6.327,6.246,51.554,12.841,10.516,0.0,1.737,3.961,0.0,2.475,0.0,0.0,0.0,0.0,0.0,0.0,2.515,5.127,0.0,0.0,0.0,3.359,0.354,0.0,5.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.248,187.248,0.0,170.451,170.451,7.642,9.155,0.0,0.0,0.0,422.0,1475.3,2276.2,7948.8,36428.0,22840.0,46217.0,0.0,8802.0,800.0,9602.0,0.0,248.0,0.0,0.0,6598.0,4520.0,0.0,0.0,0.0,20010.0,4075.0,4568.0,0.0,297.0,0.0,0.0,19376.0,0.0,0.0,0.0,32629.0,10946.0,2010.0,95.0,32.9,110.418,4.961,0.0,5.166,0.0,4.876,4.412,9976.0,9327.4,9799.3,26.628,27.853,0.0,1206.0,0.0,0.0,0.0,0.0,4445.94,96.0,0.0,4541.94,214.4,0.0,214.4,8.61,108.0,116.61,0.0,0.0,0.0,4872.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6238.33,144.0,0.0,6382.33,267.26,0.0,267.26,94.88,144.0,238.88,0.0,0.0,0.0,6888.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5994.52,120.0,0.0,6114.52,115.45,0.0,115.45,100.71,132.0,232.71,0.0,0.0,0.0,6462.68,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,115.7,0.0,0.0,36.43,22.84,36.43,9.79,40.0,0.0,1805.3,1805.3,0.0,142.6,15.17,16.03,16.58,8.19,7.12,7.61,4.16,2.87,3.05,13.45,16.0,9.34,8.22,2842.0,9.98
project_testing-0076.osw,0,0.0,0.18,0.0,0.031,0.0,-0.035,17.381,0.026,0.681,-0.549,0.0,0.0,1.68,0.0,0.0,0.0,0.462,0.0,-0.601,7.945,0.0,0.461,0.0,0.033,0.0,0.475,-15.616,0.02,-0.76,9.314,0.0,0.0,4.244,0.0,0.0,0.0,1.72,0.0,10.056,-6.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,12.18,0.0,0.0,0.0,542.83,383.11,62.69,0.0,118.14,0.0,4.32,0.0,0.0,0.0,0.0,0.0,12.42,7.12,0.0,104.99,57.94,0.0,0.0,3304.12,0.0,0.0,761.63,457.74,499.81,0.0,117.52,72.38,0.0,3304.12,89.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,42.48,0.0,0.0,0.0,0.0,0.0,399.36,0.0,0.0,0.0,0.0,441.84,6766.57,0.0,0.0,0.0,0.0,0.0,0.0,2002.79,0.0,0.0,0.0,2002.79,6766.57,0.0,0.0,0.0,0.0,0.0,1017.82,0.0,0.0,0.0,0.0,1017.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.186,0.0,0.0,0.0,8.893,5.501,0.98,0.0,1.94,0.0,0.056,0.0,0.0,0.0,0.0,0.0,0.342,0.099,0.0,1.611,0.965,0.0,0.0,0.0,0.0,12.228,10.471,11.433,0.0,2.133,1.188,0.0,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.288,0.0,0.0,0.0,0.0,0.0,2.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.732,78.732,0.0,59.379,59.379,0.0,3.0,11.264,5.089,0.0,0.0,2042.4,5818.0,24290.7,15334.0,0.0,18483.0,0.0,1754.0,1000.0,2754.0,0.0,266.0,0.0,0.0,1237.0,4750.0,933.0,0.0,0.0,15802.0,505.0,8111.0,0.0,499.0,0.0,0.0,5301.0,2968.0,0.0,0.0,18483.0,1677.0,8038.0,87.98,17.6,28.651,3.796,0.0,17.985,0.0,9.49,0.0,5254.0,5254.0,4842.0,15.122,17.037,0.0,479.0,0.0,0.0,0.0,0.0,1635.8,105.6,0.0,1741.4,0.0,0.0,0.0,2.82,118.8,121.62,479.59,0.0,479.59,2407.75,65.14,0.0,65.14,0.0,0.0,0.0,0.0,0.0,0.0,3482.69,144.0,0.0,3626.69,0.0,0.0,0.0,42.69,144.0,186.69,418.33,0.0,418.33,4308.05,76.34,0.0,76.34,0.0,0.0,0.0,0.0,0.0,0.0,2088.26,120.0,0.0,2208.26,0.0,0.0,0.0,33.0,132.0,165.0,245.95,0.0,245.95,2695.55,76.34,0.0,76.34,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,85.1,0.0,1682.0,15.33,0.0,18.48,0.0,0.0,0.0,929.4,929.4,0.0,278.9,9.44,9.69,9.37,3.88,3.65,3.38,1.57,0.65,0.98,9.73,9.91,4.89,4.54,4165.0,5.25
-project_testing-0077.osw,0,0.004,0.066,0.0,0.003,0.0,-0.002,8.919,0.003,1.232,0.146,-0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.0,-0.114,3.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-154.23,9.0,0.0,2.54,0.0,127.75,244.35,17.6,228.11,107.35,0.0,0.0,0.0,0.0,0.0,0.0,45.85,3.29,22.51,0.0,222.35,119.95,0.0,0.0,1412.13,0.0,0.0,577.36,0.0,0.0,-206.37,2.94,41.77,0.0,1618.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4310.18,0.0,0.0,0.0,4310.18,0.0,37.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.61,6264.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,504.65,504.65,6470.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.482,0.232,0.0,0.097,0.0,4.041,7.154,0.511,6.319,3.193,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.336,0.485,0.0,6.159,3.305,0.0,0.0,0.0,0.0,15.819,0.0,0.0,-23.914,0.097,1.242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.002,0.0,0.0,0.0,0.0,0.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.146,76.06,0.0,27.054,50.968,21.999,0.255,2.838,0.0,0.0,372.5,1069.0,1501.3,14628.0,1915.0,0.0,0.0,0.0,-334.0,400.0,66.0,0.0,132.0,0.0,0.0,253.0,4060.0,0.0,0.0,0.0,9466.0,0.0,5021.0,0.0,146.0,0.0,0.0,931.0,0.0,0.0,0.0,5296.0,812.0,3408.0,82.04,45.68,24.493,0.0,0.0,8.348,0.0,7.686,3.786,3659.8,3309.1,3659.8,6.748,0.0,1.972,852.0,0.0,0.0,0.0,0.0,1239.69,105.6,-581.61,763.68,601.4,0.0,601.4,0.23,140.4,140.63,86.76,0.0,86.76,1592.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3603.43,144.0,-1690.57,2056.86,769.39,0.0,769.39,3.27,144.0,147.27,83.52,0.0,83.52,3057.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1792.33,270.0,-840.88,1221.44,332.35,0.0,332.35,2.81,132.0,134.81,61.97,0.0,61.97,1750.57,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,108.7,0.0,0.0,1.92,0.0,0.0,0.0,30.0,0.0,671.6,671.6,0.0,120.8,19.19,18.92,18.32,2.56,2.47,2.59,1.44,1.01,1.21,19.45,18.73,2.78,2.69,8035.0,3.66
+project_testing-0077.osw,0,0.004,0.066,0.0,0.003,0.0,-0.002,8.919,0.003,1.232,0.146,-0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.0,-0.114,3.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-154.23,9.0,0.0,2.54,0.0,127.75,244.35,17.6,228.11,107.35,0.0,0.0,0.0,0.0,0.0,0.0,45.85,3.29,22.51,0.0,222.35,119.95,0.0,0.0,1412.13,0.0,0.0,577.36,0.0,0.0,-206.37,2.94,41.77,0.0,1618.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4310.18,0.0,0.0,0.0,4310.18,0.0,37.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.61,6264.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,504.65,504.65,6470.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.482,0.232,0.0,0.097,0.0,4.041,7.154,0.511,6.319,3.193,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.336,0.485,0.0,6.159,3.305,0.0,0.0,0.0,0.0,15.819,0.0,0.0,-23.914,0.097,1.242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.002,0.0,0.0,0.0,0.0,0.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.146,76.06,0.0,27.054,50.968,21.999,0.255,2.838,0.0,0.0,372.5,1069.0,1501.3,14628.0,1915.0,0.0,0.0,0.0,-334.0,400.0,66.0,0.0,132.0,0.0,0.0,253.0,4060.0,0.0,0.0,0.0,9466.0,0.0,5021.0,0.0,146.0,0.0,0.0,931.0,0.0,0.0,0.0,5296.0,812.0,3408.0,82.04,45.68,24.493,0.0,0.0,8.348,0.0,7.686,3.786,3659.8,3309.1,3659.8,6.748,0.0,1.972,852.0,0.0,0.0,0.0,0.0,1239.69,195.6,-840.88,594.41,601.4,0.0,601.4,0.23,140.4,140.63,86.76,0.0,86.76,1423.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1833.69,258.0,-840.88,1250.8,427.31,0.0,427.31,0.3,97.2,97.5,111.55,0.0,111.55,1887.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1792.33,270.0,-840.88,1221.44,332.35,0.0,332.35,2.81,132.0,134.81,61.97,0.0,61.97,1750.57,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,3171.0,0.0,0.0,3171.0,108.7,0.0,0.0,1.92,0.0,0.0,0.0,30.0,0.0,671.6,671.6,0.0,120.8,19.19,18.92,18.32,2.56,2.47,2.59,1.44,1.01,1.21,19.45,18.73,2.78,2.69,8035.0,3.66
project_testing-0078.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.759,0.868,0.0,0.0,0.0,40.498,-4.538,-0.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.689,7.807,0.0,1.77,-1.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,152.91,0.0,0.0,265.59,0.0,99.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,2011.24,0.0,0.0,0.0,0.0,858.94,0.0,0.0,634.02,0.0,2011.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14909.19,0.0,0.0,0.0,0.0,14909.19,0.0,0.0,0.0,0.0,0.0,0.0,407.51,0.0,0.0,0.0,1894.15,0.0,2301.66,19222.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19222.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.627,0.0,0.0,1.092,0.0,0.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.639,0.0,0.0,2.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.0,0.0,0.0,12.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.044,101.044,0.0,9.312,9.312,76.106,15.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59066.0,0.0,5320.0,1200.0,6520.0,8343.0,423.0,0.0,0.0,3761.0,4980.0,0.0,0.0,0.0,20667.0,1420.0,1741.0,10086.0,939.0,0.0,0.0,35105.0,0.0,0.0,6186.0,59066.0,5261.0,1490.0,89.6,4.28,0.128,57.595,0.0,0.0,0.0,0.0,2.175,1276.3,1276.3,848.2,5.798,68.936,0.0,0.0,5.0,0.0,0.0,0.0,237.43,118.8,0.0,356.23,1861.59,0.0,1861.59,14.22,104.4,118.62,0.0,0.0,0.0,2336.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.3,144.0,0.0,534.3,2430.09,0.0,2430.09,138.95,144.0,282.95,0.0,0.0,0.0,3247.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,327.49,120.0,0.0,447.49,1149.81,0.0,1149.81,171.88,132.0,303.88,0.0,0.0,0.0,1901.18,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,603.5,0.0,1207.0,0.0,603.5,1207.0,0.0,0.0,674.8,0.0,0.0,59.07,0.0,50.0,69.6,1113.3,1249.1,0.0,66.7,8.95,9.86,9.34,0.68,0.66,0.72,0.13,0.14,0.13,9.0,11.0,1.21,0.96,3969.0,1.28
-project_testing-0079.osw,0,-0.155,0.012,0.0,-0.099,0.0,-0.719,2.997,-0.16,0.498,-0.03,-0.158,0.0,0.0,0.0,0.0,0.0,-0.474,0.0,-0.054,0.73,6.011,0.271,0.0,0.739,0.0,9.65,-24.548,-1.604,-2.587,0.38,0.2,0.0,0.0,0.0,0.0,0.0,11.125,0.0,2.037,-2.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.45,0.0,0.0,0.0,24.77,197.81,0.0,182.42,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.35,32.86,0.0,258.81,1.61,0.0,0.0,1758.36,0.0,224.35,877.95,0.0,0.0,-324.48,5.66,174.75,0.0,2082.84,11.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,760.97,0.0,0.0,0.0,464.9,0.0,2008.57,0.0,0.0,3234.44,11083.44,0.0,0.0,0.0,0.0,0.0,0.0,4956.91,0.0,0.0,1133.73,6090.64,11407.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.116,0.0,0.0,0.0,1.108,4.558,0.0,5.053,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.708,0.0,7.57,0.056,0.0,0.0,0.0,5.929,24.337,0.0,0.0,-32.924,0.218,5.197,0.0,0.298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.166,0.0,0.0,0.0,3.156,0.0,13.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.879,0.0,0.0,6.376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.247,114.171,0.0,25.034,57.957,0.0,21.958,34.256,0.0,0.0,0.0,0.0,12981.3,59606.7,1362.0,0.0,18964.0,0.0,0.0,0.0,0.0,2198.0,132.0,0.0,374.0,1248.0,4060.0,0.0,0.0,0.0,13558.0,1671.0,3876.0,2541.0,146.0,0.0,1290.0,8434.0,0.0,0.0,0.0,18964.0,5249.0,1304.0,82.04,45.68,5.328,-1.212,0.0,34.727,0.0,13.705,0.0,3411.4,3186.8,3411.4,5.146,4.147,0.0,0.0,0.0,0.0,0.0,0.0,1409.8,105.6,-800.87,714.54,0.0,0.0,0.0,19.98,140.4,160.38,1047.11,0.0,1047.11,1922.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4097.9,144.0,-2327.88,1914.01,0.0,0.0,0.0,280.8,144.0,424.8,1007.98,0.0,1007.98,3346.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2038.27,330.0,-1157.88,1210.39,0.0,0.0,0.0,241.54,132.0,373.54,747.94,0.0,747.94,2331.87,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,2152.0,0.0,2152.0,0.0,2152.0,2152.0,0.0,149.4,2406.0,1.36,0.0,17.07,1.9,0.0,0.0,1051.1,1535.3,525.5,157.7,17.11,18.42,17.04,2.55,2.76,2.66,1.42,1.36,1.38,17.0,18.27,2.65,2.96,8082.0,3.41
-project_testing-0080.osw,0,0.0,0.029,0.0,-0.009,0.0,0.0,0.951,-0.011,0.0,0.03,0.0,0.0,0.369,0.0,0.0,0.0,0.15,0.0,0.0,0.0,0.0,0.239,0.0,0.866,0.0,0.048,-2.82,-0.111,0.0,3.022,0.0,0.0,1.767,0.0,0.0,0.0,0.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-58.49,0.0,0.0,0.0,1.45,44.16,195.73,0.0,0.0,61.61,0.0,4.29,0.0,0.0,0.0,99.62,0.0,0.0,0.0,0.0,0.0,28.08,0.0,0.0,-602.62,94.62,95.59,0.0,0.0,0.0,-1442.39,0.0,273.12,0.0,839.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,438.37,0.0,0.0,0.0,0.0,438.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,594.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2036.48,0.0,0.0,0.0,0.0,0.0,758.35,0.0,0.0,0.0,0.0,758.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.666,0.0,0.0,0.0,0.021,0.688,3.154,0.0,0.0,1.092,0.0,0.094,0.0,0.0,0.0,1.907,0.0,0.0,0.0,0.0,0.0,0.508,0.0,0.0,1.604,1.583,0.0,0.0,0.0,-29.236,0.0,4.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.049,23.187,0.0,-12.078,17.157,2.238,0.0,0.0,3.792,0.0,0.0,0.0,0.0,0.0,1120.0,0.0,6210.0,0.0,1442.0,800.0,2242.0,0.0,186.0,0.0,271.0,1081.0,4520.0,1398.0,0.0,0.0,8230.0,774.0,0.0,0.0,223.0,0.0,670.0,2046.0,1645.0,0.0,0.0,6210.0,1626.0,0.0,95.0,32.9,5.895,4.018,0.0,0.0,0.0,0.0,1.49,2103.6,2103.6,1563.6,4.816,6.477,50.282,125.0,1.0,0.0,0.0,0.0,446.95,96.0,-553.14,-10.19,62.79,0.0,62.79,0.0,0.0,0.0,0.0,0.0,0.0,98.1,45.5,0.0,45.5,0.0,0.0,0.0,0.0,0.0,0.0,627.13,144.0,-733.33,37.81,78.26,0.0,78.26,0.0,0.0,0.0,0.0,0.0,0.0,172.95,56.88,0.0,56.88,0.0,0.0,0.0,0.0,0.0,0.0,602.63,330.0,-726.52,206.11,33.81,0.0,33.81,0.0,0.0,0.0,0.0,0.0,0.0,296.8,56.88,0.0,56.88,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,634.0,0.0,0.0,634.0,48.7,0.0,634.0,1.12,0.0,4.35,1.86,50.0,0.0,840.8,840.8,0.0,0.0,10.69,14.16,11.25,1.51,1.16,1.17,0.29,0.27,0.26,10.0,13.27,2.02,1.34,4402.0,2.1
-project_testing-0081.osw,0,0.004,0.096,0.0,0.005,0.0,-0.867,16.232,-0.008,1.661,0.049,0.0,0.0,0.0,0.0,0.0,0.0,-0.633,0.0,0.0,0.0,0.003,0.16,0.0,0.006,0.0,1.94,-4.13,-0.027,-0.499,0.92,0.0,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.06,6.12,0.0,0.0,0.0,240.28,0.0,0.0,312.37,0.0,0.0,2.16,0.0,0.0,0.0,0.0,88.79,12.45,27.63,0.0,302.63,96.54,0.0,0.0,2463.61,0.0,0.0,1308.31,0.0,0.0,-406.92,10.53,328.4,0.0,2870.53,138.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,44.1,0.0,678.59,0.0,0.0,2274.65,414.58,0.0,0.0,0.0,835.21,4247.12,6989.41,0.0,0.0,0.0,0.0,0.0,278.68,0.0,0.0,0.0,0.0,278.68,7396.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.043,0.093,0.0,0.0,0.0,4.079,0.0,0.0,5.053,0.0,0.0,0.029,0.0,0.0,0.0,0.0,1.495,0.32,0.386,0.0,4.653,1.574,0.0,0.0,0.0,0.0,21.001,0.0,0.0,-11.86,0.193,5.392,0.0,2.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,4.607,0.0,0.0,15.442,2.815,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,1.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.947,76.807,0.0,34.546,46.406,0.0,28.833,1.567,0.0,0.0,0.0,0.0,1029.9,13230.8,3482.0,0.0,10052.0,0.0,1822.0,600.0,2422.0,0.0,266.0,0.0,0.0,765.0,4290.0,0.0,0.0,0.0,6006.0,684.0,0.0,0.0,499.0,0.0,0.0,5370.0,0.0,0.0,0.0,10052.0,4184.0,0.0,87.98,17.6,16.686,0.966,0.0,7.732,0.0,5.078,2.498,2639.3,2183.1,2639.3,4.747,7.254,0.344,2634.0,0.0,0.0,0.0,0.0,1278.42,105.6,-326.72,1057.29,0.0,0.0,0.0,27.1,118.8,145.9,66.73,0.0,66.73,1269.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2721.8,144.0,-695.61,2170.19,0.0,0.0,0.0,410.33,144.0,554.33,58.21,0.0,58.21,2782.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1632.02,210.0,-417.09,1424.93,0.0,0.0,0.0,317.17,132.0,449.17,34.22,0.0,34.22,1908.32,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,50.8,0.0,0.0,3.48,0.0,10.05,0.0,30.0,0.0,1042.0,1042.0,0.0,0.0,19.12,18.93,19.03,2.05,2.25,2.12,1.27,1.11,1.23,19.36,18.64,2.23,2.55,8562.0,2.64
-project_testing-0082.osw,0,0.018,0.0,0.0,0.026,0.0,-3.826,15.902,0.146,2.546,-0.122,0.0,0.0,0.0,0.0,0.0,0.0,0.159,0.0,-0.49,1.733,0.019,0.0,0.0,0.028,0.0,56.423,-17.418,0.15,-3.792,1.532,0.0,0.0,0.0,0.0,0.0,0.0,6.533,0.0,4.671,-1.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1604.59,0.0,0.0,1559.1,471.77,0.0,0.0,0.0,0.0,0.0,1204.26,358.29,54.0,163.75,0.0,1630.32,18.42,0.0,0.0,13577.95,0.0,1020.12,4746.99,0.0,0.0,-570.66,297.06,1019.95,0.0,14148.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,1052.09,0.0,15.02,0.0,0.0,0.0,0.0,0.0,1367.52,0.0,0.0,2434.63,30205.47,0.0,0.0,0.0,0.0,0.0,14192.88,0.0,0.0,0.0,0.0,14192.88,30776.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.865,0.0,0.0,6.319,1.94,0.0,0.0,0.0,0.0,0.0,4.756,1.494,0.336,0.584,0.0,6.339,0.075,0.0,0.0,0.0,4.037,19.159,0.0,0.0,-3.68,1.284,4.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.0,0.102,0.0,0.0,0.0,0.0,0.0,9.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.058,152.738,0.0,52.704,56.384,0.0,16.528,79.825,0.0,0.0,0.0,0.0,1577.7,15373.0,19190.0,0.0,43316.0,0.0,5736.0,1000.0,6736.0,0.0,0.0,0.0,0.0,4055.0,4750.0,0.0,0.0,0.0,11681.0,1008.0,1869.0,0.0,0.0,0.0,0.0,37621.0,0.0,0.0,0.0,43316.0,3153.0,2542.0,89.6,4.28,16.272,47.367,0.0,9.272,0.0,6.686,1.508,4587.1,3936.1,4587.1,14.105,45.782,0.0,392.0,252.0,0.0,0.0,0.0,1437.64,118.8,-93.83,1462.61,0.0,0.0,0.0,15.04,104.4,119.44,2962.94,0.0,2962.94,4544.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2363.25,144.0,-154.24,2353.01,0.0,0.0,0.0,146.98,144.0,290.98,1844.06,0.0,1844.06,4488.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1982.96,150.0,-129.42,2003.54,0.0,0.0,0.0,181.81,132.0,313.81,1742.9,0.0,1742.9,4060.25,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,0.0,0.0,0.0,19.19,0.0,34.65,8.66,50.0,0.0,274.2,274.2,0.0,82.3,14.7,17.68,15.15,3.09,3.2,2.73,1.31,1.11,1.17,15.73,17.73,3.64,4.22,714.0,4.59
-project_testing-0083.osw,0,0.0,0.025,-0.036,0.09,0.0,-0.105,0.819,-0.299,0.0,0.0,0.0,0.0,0.093,0.0,0.0,0.0,0.714,0.0,0.0,0.0,0.0,0.421,7.874,-1.275,0.0,31.654,-9.271,-0.51,0.0,0.0,0.0,0.0,0.493,0.0,0.0,0.0,15.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.73,113.38,0.0,0.0,65.21,0.0,35.24,0.0,0.0,0.0,0.0,0.0,6.04,0.0,0.0,0.0,0.0,0.0,0.0,462.1,0.0,0.0,0.0,61.51,67.17,-123.82,0.0,216.65,0.0,585.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11966.72,2298.04,0.0,0.0,0.0,14264.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,14726.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14850.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,4.338,0.0,0.0,1.94,0.0,0.627,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.802,4.152,-14.348,0.0,6.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.086,11.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.38,95.729,0.0,8.564,22.912,72.817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5065.0,0.0,27068.0,0.0,-879.0,1000.0,121.0,0.0,132.0,0.0,48.0,2259.0,4750.0,203.0,0.0,0.0,8282.0,890.0,0.0,0.0,146.0,5745.0,165.0,15087.0,470.0,0.0,0.0,27069.0,5456.0,0.0,82.04,45.68,1.899,44.697,0.0,0.0,0.0,0.0,2.736,2197.6,2185.9,1829.9,7.58,29.153,0.0,45.0,147.0,0.0,0.0,0.0,557.34,105.6,-349.02,313.91,1990.67,0.0,1990.67,0.0,0.0,0.0,0.0,0.0,0.0,2304.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1620.01,144.0,-1014.51,749.51,2546.73,0.0,2546.73,0.0,0.0,0.0,0.0,0.0,0.0,3296.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,805.79,210.0,-504.61,511.18,1100.11,0.0,1100.11,0.0,0.0,0.0,0.0,0.0,0.0,1611.29,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,232.09,0.0,0.0,1228.0,0.0,409.3,0.0,0.0,65.0,409.3,5.07,0.0,18.54,8.53,40.0,0.0,2026.8,2026.8,675.6,0.0,9.67,9.83,9.63,1.9,1.27,1.51,0.43,0.32,0.37,10.09,9.91,2.13,1.39,6227.0,2.2
-project_testing-0084.osw,0,0.0,0.014,0.0,-0.103,0.0,-0.043,1.693,0.01,0.0,-0.027,-0.012,0.0,0.373,0.0,0.0,0.0,0.038,0.0,-0.035,0.46,0.0,0.387,0.0,4.391,0.0,3.995,-9.762,0.092,0.0,0.772,0.012,0.0,2.27,0.0,0.0,0.0,8.001,0.0,2.217,-2.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-69.1,18.27,28.06,11.83,0.0,69.06,95.18,32.71,279.22,109.43,0.0,6.14,0.0,0.0,0.0,32.15,0.0,19.02,0.0,0.0,0.0,3.16,0.0,0.0,684.73,0.0,0.0,542.59,0.0,383.38,-1030.28,86.85,67.05,0.0,1715.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.36,0.0,0.0,0.0,0.0,1758.36,0.0,0.0,0.0,18.32,0.0,1043.15,0.0,4.63,0.0,0.0,4511.83,0.0,5577.93,9295.38,1274.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1274.35,10325.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.325,0.539,0.226,0.0,0.974,2.063,0.57,5.053,1.94,0.0,0.149,0.0,0.0,0.0,0.677,0.0,0.367,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,9.963,0.0,8.288,-20.883,1.647,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,7.082,0.0,0.031,0.0,0.0,30.63,0.0,7.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.548,88.431,0.0,13.537,34.42,8.976,37.868,7.167,0.0,0.0,3101.7,1243.3,2449.5,9148.2,1772.0,0.0,18202.0,0.0,2175.0,600.0,2775.0,0.0,248.0,0.0,1144.0,1630.0,4290.0,1277.0,0.0,0.0,13793.0,2360.0,2843.0,0.0,297.0,0.0,2831.0,5031.0,2114.0,0.0,0.0,18202.0,6123.0,1806.0,95.0,32.9,3.99,10.423,0.0,6.436,0.0,5.455,1.393,3242.3,2949.5,3242.3,5.377,22.982,3.262,0.0,89.0,0.0,0.0,0.0,897.73,96.0,-544.63,449.09,251.84,0.0,251.84,35.6,108.0,143.6,305.16,0.0,305.16,1149.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1259.65,144.0,-764.2,639.44,313.93,0.0,313.93,392.45,144.0,536.45,229.64,0.0,229.64,1719.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1210.42,270.0,-734.34,746.08,135.61,0.0,135.61,416.55,132.0,548.55,156.49,0.0,156.49,1586.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2678.0,0.0,0.0,0.0,0.0,0.0,2678.0,1.77,0.0,9.1,9.1,50.0,0.0,1728.0,1728.0,0.0,103.6,10.2,10.78,10.03,2.06,2.26,2.2,0.62,0.57,0.58,10.18,11.36,2.8,2.7,129.0,3.24
-project_testing-0085.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.175,0.0,0.472,0.0,4.247,-6.905,0.046,-0.436,0.71,0.0,0.0,0.411,0.0,0.0,0.0,1.296,0.0,0.649,-0.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-110.83,9.12,29.47,14.75,0.0,0.0,19.8,49.49,0.0,137.17,0.0,0.0,0.0,0.0,0.04,0.0,1.4,17.04,12.35,0.0,86.5,2.68,0.0,0.0,-1964.69,0.0,0.0,122.56,0.0,0.0,-2678.72,10.57,311.91,0.0,714.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,1059.82,37.39,0.0,0.0,0.0,0.0,0.0,4.22,0.0,0.0,0.0,835.21,1936.64,1295.93,0.0,0.0,0.0,0.0,0.0,0.0,1323.62,0.0,0.0,0.0,1323.62,3974.64,0.0,0.0,0.0,0.0,0.0,0.35,0.0,0.0,0.0,0.0,0.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.573,0.163,0.542,0.272,0.0,0.0,0.491,0.816,0.0,2.431,0.0,0.0,0.0,0.0,0.001,0.0,0.026,0.347,0.218,0.0,1.544,0.056,0.0,0.0,0.0,0.0,2.242,0.0,0.0,-54.295,0.193,5.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.195,0.254,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,0.0,7.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-18.258,36.037,0.0,-38.851,15.443,0.0,13.148,7.444,0.002,0.0,3735.2,1708.1,1745.9,21873.6,0.0,0.0,6454.0,0.0,1993.0,400.0,2393.0,0.0,124.0,0.0,73.0,1494.0,4060.0,120.0,0.0,0.0,6784.0,302.0,611.0,0.0,148.0,0.0,136.0,4609.0,254.0,0.0,0.0,6455.0,784.0,524.0,95.0,32.9,0.693,0.657,0.0,12.976,0.0,9.309,1.202,1995.1,1759.2,1601.8,6.582,6.582,2665.627,0.0,0.0,0.0,0.0,0.0,402.28,96.0,-743.86,-245.59,0.0,0.0,0.0,12.36,108.0,120.36,316.95,0.0,316.95,191.74,0.02,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,564.45,144.0,-906.04,-197.59,0.0,0.0,0.0,136.26,144.0,280.26,238.51,0.0,238.51,321.21,0.03,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,542.39,510.0,-940.91,111.48,0.0,0.0,0.0,144.62,132.0,276.62,162.54,0.0,162.54,550.67,0.03,0.0,0.03,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,322.0,322.0,0.0,57.8,322.0,0.0,0.0,4.52,1.94,30.0,0.0,406.6,406.6,203.3,48.7,13.58,12.38,12.95,1.02,1.05,1.09,0.34,0.3,0.31,10.55,11.45,1.54,1.29,2146.0,2.0
-project_testing-0086.osw,0,-0.012,0.047,0.0,-0.016,0.0,2.634,2.103,-0.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.017,0.0,0.18,0.442,-0.088,1.215,0.0,-0.109,0.0,173.834,-5.264,-0.579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.868,0.0,5.104,-2.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.89,828.11,915.51,0.0,0.0,471.77,0.0,300.49,0.0,0.0,0.0,0.0,0.0,44.57,0.0,0.0,0.0,0.0,0.0,0.0,6105.38,0.0,1104.49,0.0,0.0,1816.44,-570.66,0.0,1187.77,0.0,6676.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39171.83,0.0,0.0,0.0,1480.62,0.0,0.0,40652.44,46757.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47328.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,3.526,3.724,0.0,0.0,1.94,0.0,1.084,0.0,0.0,0.0,0.0,0.0,0.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.371,0.0,0.0,9.811,-3.68,0.0,4.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,265.932,0.0,0.0,0.0,10.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.917,305.597,0.0,25.933,29.613,0.0,275.984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7649.0,0.0,125551.0,0.0,17390.0,400.0,17790.0,0.0,282.0,0.0,0.0,12292.0,4060.0,0.0,0.0,0.0,21786.0,2861.0,2291.0,0.0,626.0,0.0,0.0,114057.0,0.0,0.0,0.0,125551.0,8164.0,2705.0,89.6,4.28,12.399,186.76,0.0,0.0,0.0,0.0,0.0,3239.6,3239.6,1749.7,14.548,154.135,0.0,19.0,127.0,0.0,0.0,0.0,755.04,118.8,-93.83,780.01,0.0,0.0,0.0,251.15,104.4,355.55,0.0,0.0,0.0,1135.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1241.17,144.0,-154.24,1230.93,0.0,0.0,0.0,2454.2,144.0,2598.2,0.0,0.0,0.0,3829.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1041.44,150.0,-129.42,1062.02,0.0,0.0,0.0,3035.82,132.0,3167.82,0.0,0.0,0.0,4229.84,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,0.0,0.0,0.0,7.65,0.0,87.89,37.67,0.0,0.0,1805.3,1805.3,0.0,108.3,11.16,9.69,10.46,2.32,1.43,1.5,0.79,0.4,0.35,10.27,10.0,3.2,1.66,4905.0,3.24
-project_testing-0087.osw,0,-0.008,-0.161,0.0,-0.009,0.0,-0.102,13.992,-0.155,0.0,-0.542,-1.044,0.0,0.0,0.0,0.0,0.0,-1.391,0.0,-2.111,3.372,-0.009,0.487,0.0,-0.009,0.0,0.188,-6.716,-0.152,0.0,1.565,0.0,0.0,0.0,0.0,0.0,0.0,3.35,0.0,2.974,-1.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-385.89,12.31,0.0,0.0,1.99,78.32,0.63,0.0,312.37,194.47,0.0,0.3,0.01,0.97,47.11,0.0,94.78,13.52,0.0,0.0,0.0,47.51,0.0,0.0,203.89,0.0,0.0,425.31,0.0,0.0,-949.47,3.99,305.65,0.0,1153.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,516.76,0.0,7.38,0.0,0.0,0.0,1.87,0.0,0.0,0.0,279.36,805.37,2365.02,0.0,0.0,0.0,0.0,0.0,0.0,1355.76,0.0,0.0,0.0,1355.76,3314.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.685,0.186,0.0,0.0,0.037,1.451,0.009,0.0,5.053,3.193,0.0,0.004,0.0,0.012,0.663,0.0,1.495,0.341,0.0,0.0,0.0,0.752,0.0,0.0,0.0,0.0,6.774,0.0,0.0,-27.673,0.065,5.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.508,0.0,0.05,0.0,0.0,0.0,0.013,0.0,0.0,0.0,1.897,0.0,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.16,38.833,0.0,-1.934,25.739,0.0,5.468,7.627,0.0,0.0,0.0,0.0,1022.9,8811.9,7136.0,4573.0,7136.0,0.0,245.0,400.0,645.0,0.0,168.0,0.0,0.0,72.0,4060.0,0.0,0.0,0.0,6680.0,646.0,1733.0,0.0,314.0,0.0,0.0,378.0,0.0,0.0,0.0,4573.0,2036.0,1844.0,87.98,17.6,11.679,0.723,0.012,5.391,0.0,4.847,2.002,2120.7,1593.2,2120.7,7.867,9.11,6.204,31.0,0.0,0.0,0.0,0.0,708.95,105.6,-725.95,88.59,0.0,0.0,0.0,5.14,118.8,123.94,324.72,0.0,324.72,537.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1509.38,144.0,-1526.39,126.99,0.0,0.0,0.0,77.81,144.0,221.81,283.24,0.0,283.24,632.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,905.04,330.0,-924.88,310.16,0.0,0.0,0.0,60.14,132.0,192.14,166.52,0.0,166.52,668.82,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,0.0,23.3,0.0,0.0,7.14,4.57,7.14,0.0,30.0,0.0,599.2,599.2,0.0,71.8,15.09,14.26,14.57,1.31,1.21,1.21,0.72,0.66,0.67,16.36,9.18,1.51,1.66,529.0,2.12
+project_testing-0079.osw,0,-0.155,0.012,0.0,-0.099,0.0,-0.719,2.997,-0.16,0.498,-0.03,-0.158,0.0,0.0,0.0,0.0,0.0,-0.474,0.0,-0.054,0.73,6.011,0.271,0.0,0.739,0.0,9.65,-24.548,-1.604,-2.587,0.38,0.2,0.0,0.0,0.0,0.0,0.0,11.125,0.0,2.037,-2.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.45,0.0,0.0,0.0,24.77,197.81,0.0,182.42,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.35,32.86,0.0,258.81,1.61,0.0,0.0,1758.36,0.0,224.35,877.95,0.0,0.0,-324.48,5.66,174.75,0.0,2082.84,11.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,760.97,0.0,0.0,0.0,464.9,0.0,2008.57,0.0,0.0,3234.44,11083.44,0.0,0.0,0.0,0.0,0.0,0.0,4956.91,0.0,0.0,1133.73,6090.64,11407.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.116,0.0,0.0,0.0,1.108,4.558,0.0,5.053,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.708,0.0,7.57,0.056,0.0,0.0,0.0,5.929,24.337,0.0,0.0,-32.924,0.218,5.197,0.0,0.298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.166,0.0,0.0,0.0,3.156,0.0,13.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.879,0.0,0.0,6.376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.247,114.171,0.0,25.034,57.957,0.0,21.958,34.256,0.0,0.0,0.0,0.0,12981.3,59606.7,1362.0,0.0,18964.0,0.0,0.0,0.0,0.0,2198.0,132.0,0.0,374.0,1248.0,4060.0,0.0,0.0,0.0,13558.0,1671.0,3876.0,2541.0,146.0,0.0,1290.0,8434.0,0.0,0.0,0.0,18964.0,5249.0,1304.0,82.04,45.68,5.328,-1.212,0.0,34.727,0.0,13.705,0.0,3411.4,3186.8,3411.4,5.146,4.147,0.0,0.0,0.0,0.0,0.0,0.0,1409.8,195.6,-1157.88,447.53,0.0,0.0,0.0,19.98,140.4,160.38,1047.11,0.0,1047.11,1655.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2100.13,318.0,-1157.88,1260.25,0.0,0.0,0.0,25.91,97.2,123.11,1346.29,0.0,1346.29,2729.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2038.27,330.0,-1157.88,1210.39,0.0,0.0,0.0,241.54,132.0,373.54,747.94,0.0,747.94,2331.87,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,2152.0,0.0,2152.0,0.0,2152.0,2152.0,0.0,149.4,2406.0,1.36,0.0,17.07,1.9,0.0,0.0,1051.1,1535.3,525.5,157.7,17.11,18.42,17.04,2.55,2.76,2.66,1.42,1.36,1.38,17.0,18.27,2.65,2.96,8082.0,3.41
+project_testing-0080.osw,0,0.0,0.029,0.0,-0.009,0.0,0.0,0.951,-0.011,0.0,0.03,0.0,0.0,0.369,0.0,0.0,0.0,0.15,0.0,0.0,0.0,0.0,0.239,0.0,0.866,0.0,0.048,-2.82,-0.111,0.0,3.022,0.0,0.0,1.767,0.0,0.0,0.0,0.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-58.49,0.0,0.0,0.0,1.45,44.16,195.73,0.0,0.0,61.61,0.0,4.29,0.0,0.0,0.0,99.62,0.0,0.0,0.0,0.0,0.0,28.08,0.0,0.0,-602.62,94.62,95.59,0.0,0.0,0.0,-1442.39,0.0,273.12,0.0,839.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,438.37,0.0,0.0,0.0,0.0,438.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,594.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2036.48,0.0,0.0,0.0,0.0,0.0,758.35,0.0,0.0,0.0,0.0,758.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.666,0.0,0.0,0.0,0.021,0.688,3.154,0.0,0.0,1.092,0.0,0.094,0.0,0.0,0.0,1.907,0.0,0.0,0.0,0.0,0.0,0.508,0.0,0.0,1.604,1.583,0.0,0.0,0.0,-29.236,0.0,4.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.049,23.187,0.0,-12.078,17.157,2.238,0.0,0.0,3.792,0.0,0.0,0.0,0.0,0.0,1120.0,0.0,6210.0,0.0,1442.0,800.0,2242.0,0.0,186.0,0.0,271.0,1081.0,4520.0,1398.0,0.0,0.0,8230.0,774.0,0.0,0.0,223.0,0.0,670.0,2046.0,1645.0,0.0,0.0,6210.0,1626.0,0.0,95.0,32.9,5.895,4.018,0.0,0.0,0.0,0.0,1.49,2103.6,2103.6,1563.6,4.816,6.477,50.282,125.0,1.0,0.0,0.0,0.0,446.95,306.0,-761.99,-9.04,62.79,0.0,62.79,0.0,0.0,0.0,0.0,0.0,0.0,99.25,45.5,0.0,45.5,0.0,0.0,0.0,0.0,0.0,0.0,627.13,144.0,-733.33,37.81,78.26,0.0,78.26,0.0,0.0,0.0,0.0,0.0,0.0,172.95,56.88,0.0,56.88,0.0,0.0,0.0,0.0,0.0,0.0,602.63,330.0,-726.52,206.11,33.81,0.0,33.81,0.0,0.0,0.0,0.0,0.0,0.0,296.8,56.88,0.0,56.88,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,634.0,0.0,0.0,634.0,48.7,0.0,634.0,1.12,0.0,4.35,1.86,50.0,0.0,840.8,840.8,0.0,0.0,10.69,14.16,11.25,1.51,1.16,1.17,0.29,0.27,0.26,10.0,13.27,2.02,1.34,4402.0,2.1
+project_testing-0081.osw,0,0.004,0.096,0.0,0.005,0.0,-0.867,16.232,-0.008,1.661,0.049,0.0,0.0,0.0,0.0,0.0,0.0,-0.633,0.0,0.0,0.0,0.003,0.16,0.0,0.006,0.0,1.94,-4.13,-0.027,-0.499,0.92,0.0,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.06,6.12,0.0,0.0,0.0,240.28,0.0,0.0,312.37,0.0,0.0,2.16,0.0,0.0,0.0,0.0,88.79,12.45,27.63,0.0,302.63,96.54,0.0,0.0,2463.61,0.0,0.0,1308.31,0.0,0.0,-406.92,10.53,328.4,0.0,2870.53,138.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,44.1,0.0,678.59,0.0,0.0,2274.65,414.58,0.0,0.0,0.0,835.21,4247.12,6989.41,0.0,0.0,0.0,0.0,0.0,278.68,0.0,0.0,0.0,0.0,278.68,7396.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.043,0.093,0.0,0.0,0.0,4.079,0.0,0.0,5.053,0.0,0.0,0.029,0.0,0.0,0.0,0.0,1.495,0.32,0.386,0.0,4.653,1.574,0.0,0.0,0.0,0.0,21.001,0.0,0.0,-11.86,0.193,5.392,0.0,2.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,4.607,0.0,0.0,15.442,2.815,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,1.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.947,76.807,0.0,34.546,46.406,0.0,28.833,1.567,0.0,0.0,0.0,0.0,1029.9,13230.8,3482.0,0.0,10052.0,0.0,1822.0,600.0,2422.0,0.0,266.0,0.0,0.0,765.0,4290.0,0.0,0.0,0.0,6006.0,684.0,0.0,0.0,499.0,0.0,0.0,5370.0,0.0,0.0,0.0,10052.0,4184.0,0.0,87.98,17.6,16.686,0.966,0.0,7.732,0.0,5.078,2.498,2639.3,2183.1,2639.3,4.747,7.254,0.344,2634.0,0.0,0.0,0.0,0.0,1278.42,195.6,-326.72,1147.29,0.0,0.0,0.0,27.1,118.8,145.9,66.73,0.0,66.73,1359.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2721.8,144.0,-695.61,2170.19,0.0,0.0,0.0,410.33,144.0,554.33,58.21,0.0,58.21,2782.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1632.02,210.0,-417.09,1424.93,0.0,0.0,0.0,317.17,132.0,449.17,34.22,0.0,34.22,1908.32,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,50.8,0.0,0.0,3.48,0.0,10.05,0.0,30.0,0.0,1042.0,1042.0,0.0,0.0,19.12,18.93,19.03,2.05,2.25,2.12,1.27,1.11,1.23,19.36,18.64,2.23,2.55,8562.0,2.64
+project_testing-0082.osw,0,0.018,0.0,0.0,0.026,0.0,-3.826,15.902,0.146,2.546,-0.122,0.0,0.0,0.0,0.0,0.0,0.0,0.159,0.0,-0.49,1.733,0.019,0.0,0.0,0.028,0.0,56.423,-17.418,0.15,-3.792,1.532,0.0,0.0,0.0,0.0,0.0,0.0,6.533,0.0,4.671,-1.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1604.59,0.0,0.0,1559.1,471.77,0.0,0.0,0.0,0.0,0.0,1204.26,358.29,54.0,163.75,0.0,1630.32,18.42,0.0,0.0,13577.95,0.0,1020.12,4746.99,0.0,0.0,-570.66,297.06,1019.95,0.0,14148.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,1052.09,0.0,15.02,0.0,0.0,0.0,0.0,0.0,1367.52,0.0,0.0,2434.63,30205.47,0.0,0.0,0.0,0.0,0.0,14192.88,0.0,0.0,0.0,0.0,14192.88,30776.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.865,0.0,0.0,6.319,1.94,0.0,0.0,0.0,0.0,0.0,4.756,1.494,0.336,0.584,0.0,6.339,0.075,0.0,0.0,0.0,4.037,19.159,0.0,0.0,-3.68,1.284,4.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.0,0.102,0.0,0.0,0.0,0.0,0.0,9.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.058,152.738,0.0,52.704,56.384,0.0,16.528,79.825,0.0,0.0,0.0,0.0,1577.7,15373.0,19190.0,0.0,43316.0,0.0,5736.0,1000.0,6736.0,0.0,0.0,0.0,0.0,4055.0,4750.0,0.0,0.0,0.0,11681.0,1008.0,1869.0,0.0,0.0,0.0,0.0,37621.0,0.0,0.0,0.0,43316.0,3153.0,2542.0,89.6,4.28,16.272,47.367,0.0,9.272,0.0,6.686,1.508,4587.1,3936.1,4587.1,14.105,45.782,0.0,392.0,252.0,0.0,0.0,0.0,1437.64,148.8,-93.83,1492.61,0.0,0.0,0.0,15.04,104.4,119.44,2962.94,0.0,2962.94,4574.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2363.25,144.0,-154.24,2353.01,0.0,0.0,0.0,146.98,144.0,290.98,1844.06,0.0,1844.06,4488.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1982.96,150.0,-129.42,2003.54,0.0,0.0,0.0,181.81,132.0,313.81,1742.9,0.0,1742.9,4060.25,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,0.0,0.0,0.0,19.19,0.0,34.65,8.66,50.0,0.0,274.2,274.2,0.0,82.3,14.7,17.68,15.15,3.09,3.2,2.73,1.31,1.11,1.17,15.73,17.73,3.64,4.22,714.0,4.59
+project_testing-0083.osw,0,0.0,0.025,-0.036,0.09,0.0,-0.105,0.819,-0.299,0.0,0.0,0.0,0.0,0.093,0.0,0.0,0.0,0.714,0.0,0.0,0.0,0.0,0.421,7.874,-1.275,0.0,31.654,-9.271,-0.51,0.0,0.0,0.0,0.0,0.493,0.0,0.0,0.0,15.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.73,113.38,0.0,0.0,65.21,0.0,35.24,0.0,0.0,0.0,0.0,0.0,6.04,0.0,0.0,0.0,0.0,0.0,0.0,462.1,0.0,0.0,0.0,61.51,67.17,-123.82,0.0,216.65,0.0,585.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11966.72,2298.04,0.0,0.0,0.0,14264.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,14726.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14850.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,4.338,0.0,0.0,1.94,0.0,0.627,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.802,4.152,-14.348,0.0,6.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.086,11.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.38,95.729,0.0,8.564,22.912,72.817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5065.0,0.0,27068.0,0.0,-879.0,1000.0,121.0,0.0,132.0,0.0,48.0,2259.0,4750.0,203.0,0.0,0.0,8282.0,890.0,0.0,0.0,146.0,5745.0,165.0,15087.0,470.0,0.0,0.0,27069.0,5456.0,0.0,82.04,45.68,1.899,44.697,0.0,0.0,0.0,0.0,2.736,2197.6,2185.9,1829.9,7.58,29.153,0.0,45.0,147.0,0.0,0.0,0.0,557.34,195.6,-504.61,248.33,1990.67,0.0,1990.67,0.0,0.0,0.0,0.0,0.0,0.0,2239.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.94,198.0,-504.61,458.33,1414.42,0.0,1414.42,0.0,0.0,0.0,0.0,0.0,0.0,1872.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,805.79,210.0,-504.61,511.18,1100.11,0.0,1100.11,0.0,0.0,0.0,0.0,0.0,0.0,1611.29,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,232.09,0.0,0.0,1228.0,0.0,409.3,0.0,0.0,65.0,409.3,5.07,0.0,18.54,8.53,40.0,0.0,2026.8,2026.8,675.6,0.0,9.67,9.83,9.63,1.9,1.27,1.51,0.43,0.32,0.37,10.09,9.91,2.13,1.39,6227.0,2.2
+project_testing-0084.osw,0,0.0,0.014,0.0,-0.103,0.0,-0.043,1.693,0.01,0.0,-0.027,-0.012,0.0,0.373,0.0,0.0,0.0,0.038,0.0,-0.035,0.46,0.0,0.387,0.0,4.391,0.0,3.995,-9.762,0.092,0.0,0.772,0.012,0.0,2.27,0.0,0.0,0.0,8.001,0.0,2.217,-2.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-69.1,18.27,28.06,11.83,0.0,69.06,95.18,32.71,279.22,109.43,0.0,6.14,0.0,0.0,0.0,32.15,0.0,19.02,0.0,0.0,0.0,3.16,0.0,0.0,684.73,0.0,0.0,542.59,0.0,383.38,-1030.28,86.85,67.05,0.0,1715.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.36,0.0,0.0,0.0,0.0,1758.36,0.0,0.0,0.0,18.32,0.0,1043.15,0.0,4.63,0.0,0.0,4511.83,0.0,5577.93,9295.38,1274.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1274.35,10325.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.325,0.539,0.226,0.0,0.974,2.063,0.57,5.053,1.94,0.0,0.149,0.0,0.0,0.0,0.677,0.0,0.367,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,9.963,0.0,8.288,-20.883,1.647,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,7.082,0.0,0.031,0.0,0.0,30.63,0.0,7.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.548,88.431,0.0,13.537,34.42,8.976,37.868,7.167,0.0,0.0,3101.7,1243.3,2449.5,9148.2,1772.0,0.0,18202.0,0.0,2175.0,600.0,2775.0,0.0,248.0,0.0,1144.0,1630.0,4290.0,1277.0,0.0,0.0,13793.0,2360.0,2843.0,0.0,297.0,0.0,2831.0,5031.0,2114.0,0.0,0.0,18202.0,6123.0,1806.0,95.0,32.9,3.99,10.423,0.0,6.436,0.0,5.455,1.393,3242.3,2949.5,3242.3,5.377,22.982,3.262,0.0,89.0,0.0,0.0,0.0,897.73,246.0,-544.63,599.09,251.84,0.0,251.84,35.6,108.0,143.6,305.16,0.0,305.16,1299.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1259.65,144.0,-764.2,639.44,313.93,0.0,313.93,392.45,144.0,536.45,229.64,0.0,229.64,1719.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1210.42,270.0,-734.34,746.08,135.61,0.0,135.61,416.55,132.0,548.55,156.49,0.0,156.49,1586.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,2678.0,0.0,0.0,0.0,0.0,0.0,2678.0,1.77,0.0,9.1,9.1,50.0,0.0,1728.0,1728.0,0.0,103.6,10.2,10.78,10.03,2.06,2.26,2.2,0.62,0.57,0.58,10.18,11.36,2.8,2.7,129.0,3.24
+project_testing-0085.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.175,0.0,0.472,0.0,4.247,-6.905,0.046,-0.436,0.71,0.0,0.0,0.411,0.0,0.0,0.0,1.296,0.0,0.649,-0.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-110.83,9.12,29.47,14.75,0.0,0.0,19.8,49.49,0.0,137.17,0.0,0.0,0.0,0.0,0.04,0.0,1.4,17.04,12.35,0.0,86.5,2.68,0.0,0.0,-1964.69,0.0,0.0,122.56,0.0,0.0,-2678.72,10.57,311.91,0.0,714.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,1059.82,37.39,0.0,0.0,0.0,0.0,0.0,4.22,0.0,0.0,0.0,835.21,1936.64,1295.93,0.0,0.0,0.0,0.0,0.0,0.0,1323.62,0.0,0.0,0.0,1323.62,3974.64,0.0,0.0,0.0,0.0,0.0,0.35,0.0,0.0,0.0,0.0,0.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.573,0.163,0.542,0.272,0.0,0.0,0.491,0.816,0.0,2.431,0.0,0.0,0.0,0.0,0.001,0.0,0.026,0.347,0.218,0.0,1.544,0.056,0.0,0.0,0.0,0.0,2.242,0.0,0.0,-54.295,0.193,5.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.195,0.254,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,0.0,7.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-18.258,36.037,0.0,-38.851,15.443,0.0,13.148,7.444,0.002,0.0,3735.2,1708.1,1745.9,21873.6,0.0,0.0,6454.0,0.0,1993.0,400.0,2393.0,0.0,124.0,0.0,73.0,1494.0,4060.0,120.0,0.0,0.0,6784.0,302.0,611.0,0.0,148.0,0.0,136.0,4609.0,254.0,0.0,0.0,6455.0,784.0,524.0,95.0,32.9,0.693,0.657,0.0,12.976,0.0,9.309,1.202,1995.1,1759.2,1601.8,6.582,6.582,2665.627,0.0,0.0,0.0,0.0,0.0,402.28,486.0,-1415.64,-527.37,0.0,0.0,0.0,12.36,108.0,120.36,316.95,0.0,316.95,-90.04,0.02,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,564.45,144.0,-906.04,-197.59,0.0,0.0,0.0,136.26,144.0,280.26,238.51,0.0,238.51,321.21,0.03,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,542.39,510.0,-940.91,111.48,0.0,0.0,0.0,144.62,132.0,276.62,162.54,0.0,162.54,550.67,0.03,0.0,0.03,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,322.0,322.0,0.0,57.8,322.0,0.0,0.0,4.52,1.94,30.0,0.0,406.6,406.6,203.3,48.7,13.58,12.38,12.95,1.02,1.05,1.09,0.34,0.3,0.31,10.55,11.45,1.54,1.29,2146.0,2.0
+project_testing-0086.osw,0,-0.012,0.047,0.0,-0.016,0.0,2.634,2.103,-0.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.017,0.0,0.18,0.442,-0.088,1.215,0.0,-0.109,0.0,173.834,-5.264,-0.579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.868,0.0,5.104,-2.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.89,828.11,915.51,0.0,0.0,471.77,0.0,300.49,0.0,0.0,0.0,0.0,0.0,44.57,0.0,0.0,0.0,0.0,0.0,0.0,6105.38,0.0,1104.49,0.0,0.0,1816.44,-570.66,0.0,1187.77,0.0,6676.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39171.83,0.0,0.0,0.0,1480.62,0.0,0.0,40652.44,46757.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47328.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,3.526,3.724,0.0,0.0,1.94,0.0,1.084,0.0,0.0,0.0,0.0,0.0,0.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.371,0.0,0.0,9.811,-3.68,0.0,4.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,265.932,0.0,0.0,0.0,10.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.917,305.597,0.0,25.933,29.613,0.0,275.984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7649.0,0.0,125551.0,0.0,17390.0,400.0,17790.0,0.0,282.0,0.0,0.0,12292.0,4060.0,0.0,0.0,0.0,21786.0,2861.0,2291.0,0.0,626.0,0.0,0.0,114057.0,0.0,0.0,0.0,125551.0,8164.0,2705.0,89.6,4.28,12.399,186.76,0.0,0.0,0.0,0.0,0.0,3239.6,3239.6,1749.7,14.548,154.135,0.0,19.0,127.0,0.0,0.0,0.0,755.04,148.8,-93.83,810.01,0.0,0.0,0.0,251.15,104.4,355.55,0.0,0.0,0.0,1165.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1241.17,144.0,-154.24,1230.93,0.0,0.0,0.0,2454.2,144.0,2598.2,0.0,0.0,0.0,3829.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1041.44,150.0,-129.42,1062.02,0.0,0.0,0.0,3035.82,132.0,3167.82,0.0,0.0,0.0,4229.84,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,6348.0,0.0,0.0,6348.0,0.0,0.0,0.0,7.65,0.0,87.89,37.67,0.0,0.0,1805.3,1805.3,0.0,108.3,11.16,9.69,10.46,2.32,1.43,1.5,0.79,0.4,0.35,10.27,10.0,3.2,1.66,4905.0,3.24
+project_testing-0087.osw,0,-0.008,-0.161,0.0,-0.009,0.0,-0.102,13.992,-0.155,0.0,-0.542,-1.044,0.0,0.0,0.0,0.0,0.0,-1.391,0.0,-2.111,3.372,-0.009,0.487,0.0,-0.009,0.0,0.188,-6.716,-0.152,0.0,1.565,0.0,0.0,0.0,0.0,0.0,0.0,3.35,0.0,2.974,-1.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-385.89,12.31,0.0,0.0,1.99,78.32,0.63,0.0,312.37,194.47,0.0,0.3,0.01,0.97,47.11,0.0,94.78,13.52,0.0,0.0,0.0,47.51,0.0,0.0,203.89,0.0,0.0,425.31,0.0,0.0,-949.47,3.99,305.65,0.0,1153.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,516.76,0.0,7.38,0.0,0.0,0.0,1.87,0.0,0.0,0.0,279.36,805.37,2365.02,0.0,0.0,0.0,0.0,0.0,0.0,1355.76,0.0,0.0,0.0,1355.76,3314.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.685,0.186,0.0,0.0,0.037,1.451,0.009,0.0,5.053,3.193,0.0,0.004,0.0,0.012,0.663,0.0,1.495,0.341,0.0,0.0,0.0,0.752,0.0,0.0,0.0,0.0,6.774,0.0,0.0,-27.673,0.065,5.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.508,0.0,0.05,0.0,0.0,0.0,0.013,0.0,0.0,0.0,1.897,0.0,0.0,0.0,0.0,0.0,0.0,7.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.16,38.833,0.0,-1.934,25.739,0.0,5.468,7.627,0.0,0.0,0.0,0.0,1022.9,8811.9,7136.0,4573.0,7136.0,0.0,245.0,400.0,645.0,0.0,168.0,0.0,0.0,72.0,4060.0,0.0,0.0,0.0,6680.0,646.0,1733.0,0.0,314.0,0.0,0.0,378.0,0.0,0.0,0.0,4573.0,2036.0,1844.0,87.98,17.6,11.679,0.723,0.012,5.391,0.0,4.847,2.002,2120.7,1593.2,2120.7,7.867,9.11,6.204,31.0,0.0,0.0,0.0,0.0,708.95,315.6,-728.79,295.76,0.0,0.0,0.0,5.14,118.8,123.94,324.72,0.0,324.72,744.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1509.38,144.0,-1526.39,126.99,0.0,0.0,0.0,77.81,144.0,221.81,283.24,0.0,283.24,632.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,905.04,330.0,-924.88,310.16,0.0,0.0,0.0,60.14,132.0,192.14,166.52,0.0,166.52,668.82,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,0.0,23.3,0.0,0.0,7.14,4.57,7.14,0.0,30.0,0.0,599.2,599.2,0.0,71.8,15.09,14.26,14.57,1.31,1.21,1.21,0.72,0.66,0.67,16.36,9.18,1.51,1.66,529.0,2.12
project_testing-0088.osw,0,-0.0,0.228,0.0,-0.001,0.0,-0.0,9.163,-0.006,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,-0.001,0.484,0.0,-0.001,0.0,0.002,-3.489,-0.007,0.0,3.736,0.0,0.0,0.0,0.0,0.0,0.0,1.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.96,236.67,68.87,0.0,0.0,194.47,0.0,18.57,0.0,0.0,0.0,0.0,0.0,15.78,0.0,0.0,0.0,20.88,0.0,0.0,856.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,255.41,0.0,856.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,0.0,1011.55,0.0,0.0,0.0,0.0,0.0,1011.55,2466.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2466.83,0.0,0.0,0.0,0.0,0.0,598.68,0.0,0.0,0.0,0.0,598.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.794,4.001,1.102,0.0,0.0,3.193,0.0,0.25,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,0.0,0.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.068,24.068,0.0,14.209,14.209,0.0,6.866,0.0,2.993,0.0,0.0,0.0,0.0,0.0,6558.0,0.0,3210.0,0.0,649.0,600.0,1249.0,0.0,168.0,0.0,0.0,458.0,4290.0,0.0,0.0,0.0,5100.0,184.0,0.0,0.0,314.0,0.0,0.0,1849.0,0.0,0.0,0.0,3210.0,1046.0,0.0,87.98,17.6,9.597,2.444,0.0,0.0,0.0,0.0,2.291,1559.6,1559.6,374.2,6.659,2.639,0.0,78.0,0.0,0.0,0.0,0.0,391.44,105.6,0.0,497.04,0.0,0.0,0.0,6.45,118.8,125.25,0.0,0.0,0.0,660.61,38.32,0.0,38.32,0.0,0.0,0.0,0.0,0.0,0.0,833.38,144.0,0.0,977.38,0.0,0.0,0.0,97.71,144.0,241.71,0.0,0.0,0.0,1263.99,44.9,0.0,44.9,0.0,0.0,0.0,0.0,0.0,0.0,499.71,120.0,0.0,619.71,0.0,0.0,0.0,75.52,132.0,207.52,0.0,0.0,0.0,872.13,44.9,0.0,44.9,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,32.2,0.0,0.0,6.56,0.0,3.21,0.0,30.0,0.0,299.6,299.6,0.0,0.0,14.39,17.17,15.92,0.99,0.37,0.58,0.62,0.28,0.35,14.09,17.0,1.41,0.46,4913.0,1.56
project_testing-0089.osw,0,0.009,0.046,0.0,0.011,0.0,0.604,5.438,0.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.035,0.178,0.017,0.165,0.0,0.022,0.0,7.733,-7.991,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.099,0.0,0.434,-0.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.44,255.21,508.22,0.0,0.0,61.61,0.0,3.84,0.0,0.0,0.0,0.0,0.0,22.82,0.0,0.0,0.0,0.0,0.0,0.0,986.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.79,0.0,986.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1880.18,0.0,0.0,0.0,1880.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3762.3,0.0,0.0,0.0,0.0,0.0,895.2,0.0,0.0,0.0,0.0,895.2,3762.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.909,3.794,8.26,0.0,0.0,1.092,0.0,0.081,0.0,0.0,0.0,0.0,0.0,0.389,0.0,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.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.465,30.465,0.0,15.832,15.832,9.598,0.0,5.035,0.0,0.0,0.0,0.0,0.0,0.0,8738.0,0.0,14461.0,0.0,5614.0,600.0,6214.0,0.0,124.0,0.0,0.0,4208.0,4290.0,0.0,0.0,0.0,9255.0,214.0,419.0,0.0,148.0,0.0,0.0,12986.0,0.0,0.0,0.0,14461.0,900.0,426.0,95.0,32.9,13.538,2.79,0.0,0.0,0.0,0.0,3.223,1703.5,1693.5,1251.1,7.934,15.541,0.0,212.0,0.0,0.0,0.0,0.0,412.95,96.0,0.0,508.95,269.3,0.0,269.3,0.0,0.0,0.0,214.37,0.0,214.37,992.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.43,144.0,0.0,723.43,335.69,0.0,335.69,0.0,0.0,0.0,161.31,0.0,161.31,1220.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,556.79,120.0,0.0,676.79,145.01,0.0,145.01,0.0,0.0,0.0,109.93,0.0,109.93,931.73,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,0.0,0.0,0.0,0.0,8.74,0.0,14.46,0.0,30.0,0.0,174.3,174.3,0.0,20.9,11.79,9.54,12.3,1.31,0.28,0.69,0.08,0.08,0.07,11.82,8.0,1.6,0.69,6226.0,1.7
project_testing-0090.osw,0,2.222,0.235,0.0,0.0,0.0,0.734,9.66,-0.043,1.165,0.039,-0.011,0.0,0.0,0.0,0.0,0.463,0.4,0.0,0.663,4.142,23.936,2.154,0.0,0.0,0.0,62.867,-19.743,-0.109,-4.72,1.918,0.027,0.0,0.0,0.0,0.0,5.613,15.498,0.0,34.076,-8.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.12,1800.21,1314.03,226.84,0.0,471.77,0.0,0.0,0.0,0.0,0.0,698.26,0.0,60.89,185.55,0.0,1922.04,22.83,0.0,0.0,15211.14,0.0,0.0,5546.0,0.0,1627.15,0.0,34.16,924.77,0.0,15211.14,358.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,669.99,0.0,25481.58,0.0,4.91,0.0,0.0,0.0,0.0,26156.48,42155.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,787.8,787.8,42155.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.076,7.479,5.078,0.951,0.0,1.94,0.0,0.0,0.0,0.0,0.0,2.871,0.0,0.366,0.662,0.0,7.633,0.093,0.0,0.0,0.0,0.0,22.472,0.0,8.789,0.0,0.151,3.802,0.0,1.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.548,0.0,172.991,0.0,0.033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,245.754,245.754,0.0,63.75,63.75,0.0,177.573,4.431,0.0,0.0,0.0,2073.7,6084.9,24070.7,16016.0,0.0,87467.0,0.0,5380.0,1200.0,6580.0,12277.0,564.0,0.0,0.0,3803.0,4980.0,0.0,0.0,0.0,33990.0,1994.0,10373.0,14843.0,1252.0,0.0,0.0,35617.0,0.0,0.0,7501.0,87467.0,8131.0,20122.0,89.6,4.28,24.916,115.525,0.0,17.942,0.0,9.3,1.689,5600.8,5600.8,3704.2,17.867,89.698,0.0,139.0,189.0,0.0,0.0,0.0,1625.45,118.8,0.0,1744.25,0.0,0.0,0.0,161.59,104.4,265.99,164.46,0.0,164.46,2174.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2671.97,144.0,0.0,2815.97,0.0,0.0,0.0,1579.08,144.0,1723.08,102.36,0.0,102.36,4641.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2242.0,120.0,0.0,2362.0,0.0,0.0,0.0,1953.3,132.0,2085.3,96.74,0.0,96.74,4544.04,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,887.7,0.0,2663.0,0.0,887.7,2663.0,0.0,0.0,992.4,16.02,0.0,78.72,8.75,66.0,84.4,2025.3,2225.0,0.0,364.5,14.06,12.96,12.8,3.73,2.9,2.94,1.91,1.0,1.32,15.73,12.82,5.05,3.51,4907.0,5.6
-project_testing-0091.osw,0,0.018,-0.007,0.0,0.026,0.0,-0.005,1.787,0.133,0.559,-0.393,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,-0.047,0.093,0.183,0.079,0.0,0.263,0.0,0.044,-5.799,1.334,-1.878,2.848,0.0,0.0,0.0,0.0,0.0,0.0,2.06,0.0,0.187,-0.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.48,0.0,0.0,0.65,44.53,58.4,0.0,228.11,36.71,0.0,0.0,0.0,0.0,0.0,0.0,46.1,4.68,32.56,0.0,255.7,45.92,0.0,0.0,1261.89,0.0,129.09,230.9,0.0,9.29,0.0,3.35,97.06,0.0,1261.89,34.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6110.65,0.0,0.0,0.0,6110.65,0.0,889.13,0.0,12.7,0.0,0.0,0.0,3.21,0.0,1155.7,0.0,523.09,2583.83,9956.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9956.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.116,0.0,0.0,0.015,0.984,1.305,0.0,6.319,1.092,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.359,0.701,0.0,7.467,1.22,0.0,0.0,0.0,3.411,6.395,0.0,0.574,0.0,0.121,2.887,0.0,0.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.193,0.0,0.0,0.0,0.0,6.036,0.0,0.086,0.0,0.0,0.0,0.022,0.0,7.846,0.0,3.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.103,84.103,0.0,35.369,35.369,31.193,17.541,0.0,0.0,0.0,0.0,0.0,2321.7,19122.9,857.0,0.0,4635.0,0.0,-327.0,1200.0,873.0,0.0,132.0,0.0,0.0,840.0,4980.0,0.0,0.0,0.0,7420.0,486.0,982.0,0.0,146.0,0.0,0.0,2973.0,0.0,0.0,0.0,4635.0,1176.0,340.0,82.04,45.68,4.826,0.153,0.0,10.148,0.0,7.236,3.363,2885.3,2759.2,2765.1,6.057,4.043,0.0,472.0,0.0,0.0,0.0,0.0,860.36,105.6,0.0,965.96,852.75,0.0,852.75,15.96,140.4,156.36,0.0,0.0,0.0,1975.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2500.8,144.0,0.0,2644.8,1090.95,0.0,1090.95,224.32,144.0,368.32,0.0,0.0,0.0,4104.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1243.89,120.0,0.0,1363.89,471.26,0.0,471.26,192.95,132.0,324.95,0.0,0.0,0.0,2160.1,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,107.7,0.0,0.0,0.86,0.0,3.71,0.93,50.0,0.0,274.2,274.2,0.0,41.1,19.74,19.25,19.61,2.35,2.05,2.26,0.83,0.74,0.76,19.82,19.09,2.6,2.23,6667.0,2.89
-project_testing-0092.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,0.11,0.0,-0.01,0.0,6.964,-3.962,-0.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.478,-0.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.71,0.0,5.58,0.0,0.0,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,0.0,-113.35,0.0,0.0,0.0,0.0,0.0,-288.92,0.0,127.6,0.0,175.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,805.25,0.0,0.0,0.0,0.0,805.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,1160.25,0.0,0.0,0.0,0.0,0.0,0.0,468.35,0.0,0.0,0.0,468.35,1449.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,1.092,0.0,0.084,0.0,0.0,0.0,0.0,0.0,0.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-33.479,0.0,3.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-21.539,11.941,0.0,-28.284,5.196,4.111,0.0,2.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12375.0,0.0,-637.0,1200.0,563.0,0.0,132.0,0.0,0.0,1637.0,4980.0,0.0,0.0,0.0,9339.0,498.0,2093.0,0.0,146.0,0.0,0.0,11056.0,0.0,0.0,0.0,12375.0,673.0,500.0,82.04,45.68,0.0,2.983,0.0,0.0,0.0,0.0,2.071,279.5,246.6,213.6,0.0,12.087,0.0,0.0,0.0,0.0,0.0,0.0,126.39,105.6,-375.06,-143.07,112.37,0.0,112.37,0.0,0.0,0.0,80.52,0.0,80.52,49.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,367.38,144.0,-616.05,-104.67,143.76,0.0,143.76,0.0,0.0,0.0,77.51,0.0,77.51,116.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,182.73,330.0,-472.85,39.88,62.1,0.0,62.1,0.0,0.0,0.0,57.51,0.0,57.51,159.49,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,0.0,0.0,0.0,12.38,0.0,50.0,0.0,306.9,306.9,0.0,30.7,17.04,16.79,16.85,0.24,0.21,0.22,0.15,0.14,0.14,17.0,16.64,0.25,0.23,6344.0,0.28
-project_testing-0093.osw,0,0.006,0.096,0.0,0.01,0.0,-1.435,6.837,-0.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.99,0.0,0.0,0.0,0.01,0.174,0.0,0.017,0.0,8.055,-5.434,-0.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-273.4,0.0,0.0,0.0,0.0,63.25,82.59,0.0,0.0,107.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.33,0.0,0.0,0.0,0.0,0.0,0.0,-219.29,0.0,0.0,0.0,0.0,0.0,-371.47,0.0,165.06,0.0,152.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1478.72,0.0,0.0,0.0,0.0,1478.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,4600.09,0.0,0.0,0.0,0.0,0.0,0.0,3340.66,0.0,0.0,0.0,3340.66,4971.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,1.42,0.0,0.0,0.0,0.0,2.384,2.839,0.0,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-43.045,0.0,4.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,41.472,0.0,-27.91,15.135,7.548,0.0,18.789,0.0,0.0,0.0,0.0,0.0,0.0,4319.0,0.0,10410.0,0.0,-538.0,1200.0,662.0,0.0,88.0,0.0,0.0,1382.0,4980.0,0.0,0.0,0.0,6502.0,52.0,0.0,0.0,97.0,0.0,0.0,9336.0,0.0,0.0,0.0,10410.0,976.0,0.0,82.04,45.68,8.457,4.605,0.0,0.0,0.0,0.0,3.691,2036.6,1868.3,1277.5,7.193,10.996,364.357,456.0,11.0,0.0,0.0,0.0,367.5,105.6,-612.9,-139.79,206.36,0.0,206.36,0.0,0.0,0.0,574.33,0.0,574.33,640.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.23,144.0,-1313.62,-101.39,264.0,0.0,264.0,0.0,0.0,0.0,552.87,0.0,552.87,715.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,531.33,390.0,-817.62,103.71,114.04,0.0,114.04,0.0,0.0,0.0,410.24,0.0,410.24,627.99,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,0.0,0.0,0.0,4.32,0.0,10.41,0.0,50.0,0.0,662.2,662.2,0.0,0.0,12.22,10.17,13.17,1.37,0.67,1.02,0.31,0.21,0.25,10.27,10.09,1.61,0.73,6254.0,2.04
+project_testing-0091.osw,0,0.018,-0.007,0.0,0.026,0.0,-0.005,1.787,0.133,0.559,-0.393,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,-0.047,0.093,0.183,0.079,0.0,0.263,0.0,0.044,-5.799,1.334,-1.878,2.848,0.0,0.0,0.0,0.0,0.0,0.0,2.06,0.0,0.187,-0.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.48,0.0,0.0,0.65,44.53,58.4,0.0,228.11,36.71,0.0,0.0,0.0,0.0,0.0,0.0,46.1,4.68,32.56,0.0,255.7,45.92,0.0,0.0,1261.89,0.0,129.09,230.9,0.0,9.29,0.0,3.35,97.06,0.0,1261.89,34.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6110.65,0.0,0.0,0.0,6110.65,0.0,889.13,0.0,12.7,0.0,0.0,0.0,3.21,0.0,1155.7,0.0,523.09,2583.83,9956.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9956.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.116,0.0,0.0,0.015,0.984,1.305,0.0,6.319,1.092,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.359,0.701,0.0,7.467,1.22,0.0,0.0,0.0,3.411,6.395,0.0,0.574,0.0,0.121,2.887,0.0,0.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.193,0.0,0.0,0.0,0.0,6.036,0.0,0.086,0.0,0.0,0.0,0.022,0.0,7.846,0.0,3.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.103,84.103,0.0,35.369,35.369,31.193,17.541,0.0,0.0,0.0,0.0,0.0,2321.7,19122.9,857.0,0.0,4635.0,0.0,-327.0,1200.0,873.0,0.0,132.0,0.0,0.0,840.0,4980.0,0.0,0.0,0.0,7420.0,486.0,982.0,0.0,146.0,0.0,0.0,2973.0,0.0,0.0,0.0,4635.0,1176.0,340.0,82.04,45.68,4.826,0.153,0.0,10.148,0.0,7.236,3.363,2885.3,2759.2,2765.1,6.057,4.043,0.0,472.0,0.0,0.0,0.0,0.0,860.36,105.6,0.0,965.96,852.75,0.0,852.75,15.96,140.4,156.36,0.0,0.0,0.0,1975.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1239.54,108.0,0.0,1347.54,605.9,0.0,605.9,20.7,97.2,117.9,0.0,0.0,0.0,2071.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1243.89,120.0,0.0,1363.89,471.26,0.0,471.26,192.95,132.0,324.95,0.0,0.0,0.0,2160.1,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2115.0,0.0,0.0,2115.0,107.7,0.0,0.0,0.86,0.0,3.71,0.93,50.0,0.0,274.2,274.2,0.0,41.1,19.74,19.25,19.61,2.35,2.05,2.26,0.83,0.74,0.76,19.82,19.09,2.6,2.23,6667.0,2.89
+project_testing-0092.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,0.11,0.0,-0.01,0.0,6.964,-3.962,-0.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.478,-0.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.71,0.0,5.58,0.0,0.0,0.0,0.0,0.0,5.67,0.0,0.0,0.0,0.0,0.0,0.0,-113.35,0.0,0.0,0.0,0.0,0.0,-288.92,0.0,127.6,0.0,175.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,805.25,0.0,0.0,0.0,0.0,805.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,1160.25,0.0,0.0,0.0,0.0,0.0,0.0,468.35,0.0,0.0,0.0,468.35,1449.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,1.092,0.0,0.084,0.0,0.0,0.0,0.0,0.0,0.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-33.479,0.0,3.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-21.539,11.941,0.0,-28.284,5.196,4.111,0.0,2.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12375.0,0.0,-637.0,1200.0,563.0,0.0,132.0,0.0,0.0,1637.0,4980.0,0.0,0.0,0.0,9339.0,498.0,2093.0,0.0,146.0,0.0,0.0,11056.0,0.0,0.0,0.0,12375.0,673.0,500.0,82.04,45.68,0.0,2.983,0.0,0.0,0.0,0.0,2.071,279.5,246.6,213.6,0.0,12.087,0.0,0.0,0.0,0.0,0.0,0.0,126.39,195.6,-1177.42,-855.43,112.37,0.0,112.37,0.0,0.0,0.0,80.52,0.0,80.52,-662.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,137.05,318.0,-1177.42,-722.38,79.84,0.0,79.84,0.0,0.0,0.0,103.53,0.0,103.53,-539.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,182.73,330.0,-472.85,39.88,62.1,0.0,62.1,0.0,0.0,0.0,57.51,0.0,57.51,159.49,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,0.0,0.0,0.0,0.0,12.38,0.0,50.0,0.0,306.9,306.9,0.0,30.7,17.04,16.79,16.85,0.24,0.21,0.22,0.15,0.14,0.14,17.0,16.64,0.25,0.23,6344.0,0.28
+project_testing-0093.osw,0,0.006,0.096,0.0,0.01,0.0,-1.435,6.837,-0.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.99,0.0,0.0,0.0,0.01,0.174,0.0,0.017,0.0,8.055,-5.434,-0.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-273.4,0.0,0.0,0.0,0.0,63.25,82.59,0.0,0.0,107.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.33,0.0,0.0,0.0,0.0,0.0,0.0,-219.29,0.0,0.0,0.0,0.0,0.0,-371.47,0.0,165.06,0.0,152.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1478.72,0.0,0.0,0.0,0.0,1478.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,4600.09,0.0,0.0,0.0,0.0,0.0,0.0,3340.66,0.0,0.0,0.0,3340.66,4971.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,1.42,0.0,0.0,0.0,0.0,2.384,2.839,0.0,0.0,3.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-43.045,0.0,4.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,41.472,0.0,-27.91,15.135,7.548,0.0,18.789,0.0,0.0,0.0,0.0,0.0,0.0,4319.0,0.0,10410.0,0.0,-538.0,1200.0,662.0,0.0,88.0,0.0,0.0,1382.0,4980.0,0.0,0.0,0.0,6502.0,52.0,0.0,0.0,97.0,0.0,0.0,9336.0,0.0,0.0,0.0,10410.0,976.0,0.0,82.04,45.68,8.457,4.605,0.0,0.0,0.0,0.0,3.691,2036.6,1868.3,1277.5,7.193,10.996,364.357,456.0,11.0,0.0,0.0,0.0,367.5,195.6,-1512.9,-949.8,206.36,0.0,206.36,0.0,0.0,0.0,574.33,0.0,574.33,-169.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.45,378.0,-1512.9,-662.45,146.62,0.0,146.62,0.0,0.0,0.0,738.43,0.0,738.43,222.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,531.33,390.0,-817.62,103.71,114.04,0.0,114.04,0.0,0.0,0.0,410.24,0.0,410.24,627.99,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,854.0,0.0,0.0,854.0,0.0,0.0,0.0,4.32,0.0,10.41,0.0,50.0,0.0,662.2,662.2,0.0,0.0,12.22,10.17,13.17,1.37,0.67,1.02,0.31,0.21,0.25,10.27,10.09,1.61,0.73,6254.0,2.04
project_testing-0094.osw,0,-0.002,-0.151,0.0,-0.003,0.0,-1.223,14.402,-0.043,0.407,-0.174,0.0,0.0,0.0,0.0,0.0,0.0,-0.321,0.0,-0.209,1.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.13,0.0,261.83,0.0,14.02,312.37,194.47,0.0,0.0,0.0,0.0,0.0,126.47,84.53,11.91,5.34,0.0,50.93,58.45,0.0,0.0,2619.85,0.0,0.0,1154.69,0.0,0.0,0.0,0.0,341.72,0.0,2619.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,551.92,0.0,0.0,0.0,0.0,0.0,166.05,0.0,0.0,0.0,0.0,717.96,3337.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3337.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.058,0.0,4.714,0.0,0.247,5.053,3.193,0.0,0.0,0.0,0.0,0.0,1.739,1.495,0.293,0.075,0.0,0.853,0.984,0.0,0.0,0.0,0.0,18.751,0.0,0.0,0.0,0.0,5.611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,1.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.94,47.94,0.0,43.066,43.066,0.0,4.874,0.0,0.0,0.0,221.3,517.7,256.2,2152.6,6088.0,0.0,0.0,0.0,1369.0,1200.0,2569.0,0.0,168.0,0.0,0.0,661.0,4980.0,0.0,0.0,0.0,7254.0,480.0,965.0,0.0,314.0,0.0,0.0,4866.0,0.0,0.0,0.0,7141.0,1072.0,888.0,87.98,17.6,13.657,0.0,0.0,1.844,0.0,1.438,0.0,9973.5,8078.2,9973.5,5.052,0.0,0.0,134.0,0.0,0.0,0.0,0.0,1186.4,105.6,0.0,1292.0,0.0,0.0,0.0,4.58,118.8,123.38,0.0,0.0,0.0,1415.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2525.89,144.0,0.0,2669.89,0.0,0.0,0.0,69.37,144.0,213.37,0.0,0.0,0.0,2883.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1514.55,120.0,0.0,1634.55,0.0,0.0,0.0,53.62,132.0,185.62,0.0,0.0,0.0,1820.17,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,623.0,0.0,0.0,623.0,29.8,0.0,0.0,6.09,0.0,0.0,0.0,0.0,0.0,297.6,297.6,0.0,44.6,12.91,13.21,14.67,2.16,2.57,2.0,1.31,1.06,1.2,16.27,14.73,3.28,7.2,8753.0,9.97
-project_testing-0095.osw,0,0.016,-0.0,0.0,0.022,0.0,-0.076,1.091,0.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,-0.219,0.836,0.154,0.141,0.0,0.221,0.0,0.559,-2.565,0.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.003,0.0,1.153,-1.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.3,25.55,38.91,0.0,0.0,81.75,0.0,11.12,0.0,0.0,90.47,0.0,0.0,7.37,0.0,0.0,0.0,0.0,0.0,0.0,437.95,0.0,0.0,0.0,0.0,5.54,0.0,0.0,176.94,0.0,437.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.66,0.0,0.0,0.0,0.0,339.66,0.0,0.0,0.0,0.0,0.0,0.0,738.53,0.0,0.0,0.0,0.0,0.0,738.53,1516.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1516.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.744,1.149,0.0,0.0,2.431,0.0,0.186,0.0,0.0,1.434,0.0,0.0,0.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,5.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.694,18.694,0.0,11.947,11.947,1.734,5.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,800.0,0.0,5455.0,0.0,-88.0,800.0,712.0,0.0,132.0,0.0,0.0,227.0,4520.0,0.0,0.0,0.0,7744.0,223.0,2642.0,0.0,146.0,0.0,0.0,1531.0,0.0,0.0,0.0,5456.0,1436.0,2343.0,82.04,45.68,3.797,2.852,0.0,0.0,0.0,0.0,3.885,1705.5,1085.3,1705.5,4.472,7.028,0.0,657.0,36.0,0.0,0.0,0.0,290.6,105.6,0.0,396.2,47.4,0.0,47.4,4.56,140.4,144.96,0.0,0.0,0.0,588.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,844.69,144.0,0.0,988.69,60.64,0.0,60.64,64.12,144.0,208.12,0.0,0.0,0.0,1257.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,420.14,120.0,0.0,540.14,26.19,0.0,26.19,55.15,132.0,187.15,0.0,0.0,0.0,753.48,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,0.0,0.0,0.0,0.8,0.0,3.27,2.18,40.0,0.0,764.5,764.5,0.0,114.7,15.96,4.08,11.02,0.98,1.14,0.9,0.26,0.23,0.24,18.73,4.36,1.07,1.28,27.0,1.71
-project_testing-0096.osw,0,0.0,0.196,0.0,-5.506,0.0,-0.334,3.013,-1.204,0.0,-0.917,0.0,0.0,4.714,0.0,0.0,0.0,-1.382,0.0,-1.522,8.568,0.0,0.083,0.0,18.711,0.0,2.666,-16.513,-1.22,0.0,8.627,0.0,0.0,-4.353,0.0,0.0,0.0,7.705,0.0,10.343,-23.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,18.04,296.96,0.0,0.0,81.75,0.0,0.71,0.0,0.0,29.57,0.0,0.0,5.5,0.0,0.0,0.0,67.22,0.0,0.0,556.05,0.0,0.0,0.0,0.0,11.9,0.0,0.0,43.97,0.0,556.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,458.47,426.11,0.0,0.0,0.0,4005.66,0.0,4890.24,5446.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5446.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.026,1.03,8.309,0.0,0.0,2.431,0.0,0.009,0.0,0.0,0.375,0.0,0.0,0.223,0.0,0.0,0.0,1.862,0.0,0.0,0.0,0.0,0.0,0.0,0.736,0.0,0.0,1.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.112,2.893,0.0,0.0,0.0,27.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.508,49.508,0.0,16.309,16.309,0.0,33.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21742.0,20788.0,35601.0,0.0,-775.0,1200.0,425.0,0.0,420.0,0.0,1621.0,1990.0,4980.0,2339.0,0.0,0.0,22554.0,88.0,11116.0,0.0,463.0,0.0,5599.0,10816.0,4230.0,0.0,0.0,34647.0,7086.0,6453.0,82.04,45.68,6.806,4.163,0.0,0.0,0.0,0.0,2.275,2435.4,2435.4,961.7,19.939,18.497,0.0,1.0,0.0,0.0,0.0,0.0,396.72,105.6,0.0,502.32,0.0,0.0,0.0,30.21,140.4,170.61,0.0,0.0,0.0,672.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1153.16,144.0,0.0,1297.16,0.0,0.0,0.0,424.55,144.0,568.55,0.0,0.0,0.0,1865.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,573.57,120.0,0.0,693.57,0.0,0.0,0.0,365.19,132.0,497.19,0.0,0.0,0.0,1190.76,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,6348.0,0.0,6348.0,6348.0,178.0,256.4,6348.0,21.74,20.79,21.74,13.86,50.0,0.0,1805.3,1805.3,902.8,541.5,12.96,8.17,10.95,1.51,0.68,0.79,0.22,0.24,0.25,14.36,9.27,2.05,0.85,5484.0,2.44
+project_testing-0095.osw,0,0.016,-0.0,0.0,0.022,0.0,-0.076,1.091,0.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,-0.219,0.836,0.154,0.141,0.0,0.221,0.0,0.559,-2.565,0.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.003,0.0,1.153,-1.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.3,25.55,38.91,0.0,0.0,81.75,0.0,11.12,0.0,0.0,90.47,0.0,0.0,7.37,0.0,0.0,0.0,0.0,0.0,0.0,437.95,0.0,0.0,0.0,0.0,5.54,0.0,0.0,176.94,0.0,437.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.66,0.0,0.0,0.0,0.0,339.66,0.0,0.0,0.0,0.0,0.0,0.0,738.53,0.0,0.0,0.0,0.0,0.0,738.53,1516.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1516.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.744,1.149,0.0,0.0,2.431,0.0,0.186,0.0,0.0,1.434,0.0,0.0,0.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,5.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.694,18.694,0.0,11.947,11.947,1.734,5.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,800.0,0.0,5455.0,0.0,-88.0,800.0,712.0,0.0,132.0,0.0,0.0,227.0,4520.0,0.0,0.0,0.0,7744.0,223.0,2642.0,0.0,146.0,0.0,0.0,1531.0,0.0,0.0,0.0,5456.0,1436.0,2343.0,82.04,45.68,3.797,2.852,0.0,0.0,0.0,0.0,3.885,1705.5,1085.3,1705.5,4.472,7.028,0.0,657.0,36.0,0.0,0.0,0.0,290.6,105.6,0.0,396.2,47.4,0.0,47.4,4.56,140.4,144.96,0.0,0.0,0.0,588.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,352.1,108.0,0.0,460.1,33.68,0.0,33.68,5.92,97.2,103.12,0.0,0.0,0.0,596.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,420.14,120.0,0.0,540.14,26.19,0.0,26.19,55.15,132.0,187.15,0.0,0.0,0.0,753.48,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,1138.0,0.0,0.0,1138.0,0.0,0.0,0.0,0.8,0.0,3.27,2.18,40.0,0.0,764.5,764.5,0.0,114.7,15.96,4.08,11.02,0.98,1.14,0.9,0.26,0.23,0.24,18.73,4.36,1.07,1.28,27.0,1.71
+project_testing-0096.osw,0,0.0,0.196,0.0,-5.506,0.0,-0.334,3.013,-1.204,0.0,-0.917,0.0,0.0,4.714,0.0,0.0,0.0,-1.382,0.0,-1.522,8.568,0.0,0.083,0.0,18.711,0.0,2.666,-16.513,-1.22,0.0,8.627,0.0,0.0,-4.353,0.0,0.0,0.0,7.705,0.0,10.343,-23.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,18.04,296.96,0.0,0.0,81.75,0.0,0.71,0.0,0.0,29.57,0.0,0.0,5.5,0.0,0.0,0.0,67.22,0.0,0.0,556.05,0.0,0.0,0.0,0.0,11.9,0.0,0.0,43.97,0.0,556.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,458.47,426.11,0.0,0.0,0.0,4005.66,0.0,4890.24,5446.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5446.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.026,1.03,8.309,0.0,0.0,2.431,0.0,0.009,0.0,0.0,0.375,0.0,0.0,0.223,0.0,0.0,0.0,1.862,0.0,0.0,0.0,0.0,0.0,0.0,0.736,0.0,0.0,1.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.112,2.893,0.0,0.0,0.0,27.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.508,49.508,0.0,16.309,16.309,0.0,33.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21742.0,20788.0,35601.0,0.0,-775.0,1200.0,425.0,0.0,420.0,0.0,1621.0,1990.0,4980.0,2339.0,0.0,0.0,22554.0,88.0,11116.0,0.0,463.0,0.0,5599.0,10816.0,4230.0,0.0,0.0,34647.0,7086.0,6453.0,82.04,45.68,6.806,4.163,0.0,0.0,0.0,0.0,2.275,2435.4,2435.4,961.7,19.939,18.497,0.0,1.0,0.0,0.0,0.0,0.0,396.72,105.6,0.0,502.32,0.0,0.0,0.0,30.21,140.4,170.61,0.0,0.0,0.0,672.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,515.15,108.0,0.0,623.15,0.0,0.0,0.0,39.18,97.2,136.38,0.0,0.0,0.0,759.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,573.57,120.0,0.0,693.57,0.0,0.0,0.0,365.19,132.0,497.19,0.0,0.0,0.0,1190.76,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,6348.0,0.0,6348.0,6348.0,178.0,256.4,6348.0,21.74,20.79,21.74,13.86,50.0,0.0,1805.3,1805.3,902.8,541.5,12.96,8.17,10.95,1.51,0.68,0.79,0.22,0.24,0.25,14.36,9.27,2.05,0.85,5484.0,2.44
project_testing-0097.osw,0,0.071,0.016,0.0,0.0,0.423,0.003,1.405,-0.053,0.082,0.065,-0.2,0.032,0.0,0.0,0.0,-0.034,0.261,0.0,0.095,2.264,2.191,0.253,0.0,0.0,3.137,0.779,-10.997,-0.506,-0.719,2.113,0.0,0.485,0.0,0.0,0.0,0.485,5.788,0.0,23.254,-11.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.89,53.68,21.9,0.0,354.46,0.0,115.76,0.0,265.59,0.0,66.97,0.0,0.0,0.0,0.0,3.05,0.0,27.96,0.0,390.41,464.19,0.0,0.0,7762.26,0.0,0.0,1739.98,1337.62,1095.42,0.0,298.84,1502.56,0.0,7762.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,477.41,915.93,0.0,451.05,0.0,1548.23,0.0,3.31,0.0,0.0,0.0,0.0,3395.92,15832.54,0.0,0.0,0.0,0.0,0.0,0.0,2676.6,0.0,0.0,0.0,2676.6,15832.54,0.0,0.0,0.0,0.0,0.0,1997.76,0.0,0.0,0.0,0.0,1997.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.093,0.244,0.102,0.0,1.619,0.0,0.46,0.0,1.092,0.0,0.219,0.0,0.0,0.0,0.0,0.013,0.0,0.1,0.0,1.541,1.87,0.0,0.0,0.0,0.0,7.04,7.225,5.917,0.0,1.287,6.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.241,6.218,0.0,3.062,0.0,10.511,0.0,0.022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.095,83.095,0.0,34.998,34.998,0.0,23.054,15.054,9.989,0.0,1403.2,1002.6,716.9,6403.6,2568.0,0.0,36645.0,0.0,757.0,400.0,1157.0,1268.0,118.0,0.0,0.0,244.0,4060.0,0.0,0.0,0.0,23490.0,1997.0,15804.0,1911.0,263.0,0.0,0.0,1573.0,0.0,0.0,859.0,36645.0,9654.0,22385.0,89.6,4.28,4.392,15.766,0.0,5.311,0.0,0.0,4.368,3732.1,3123.9,3732.1,2.973,30.212,0.0,5.0,0.0,0.0,0.0,0.0,892.35,118.8,0.0,1011.15,0.0,0.0,0.0,20.98,104.4,125.38,558.76,0.0,558.76,1881.08,185.79,0.0,185.79,0.0,0.0,0.0,0.0,0.0,0.0,1466.87,144.0,0.0,1610.87,0.0,0.0,0.0,205.01,144.0,349.01,347.76,0.0,347.76,2457.47,149.83,0.0,149.83,0.0,0.0,0.0,0.0,0.0,0.0,1230.82,120.0,0.0,1350.82,0.0,0.0,0.0,253.6,132.0,385.6,328.68,0.0,328.68,2214.93,149.83,0.0,149.83,0.0,0.0,0.0,False,20.0,0.0,424.5,0.0,1698.0,0.0,424.5,1698.0,60.7,66.2,474.6,2.57,0.0,21.99,14.66,30.0,86.0,2064.0,2123.0,688.0,619.3,9.54,10.51,10.41,2.2,2.24,2.22,0.64,0.55,0.56,9.91,9.91,2.83,2.95,323.0,3.73
-project_testing-0098.osw,0,-0.002,-0.002,0.0,0.0,0.0,-0.008,9.163,-0.018,0.229,-1.0,0.0,0.0,0.0,0.0,0.0,0.049,-0.333,0.0,0.0,0.0,-0.007,0.447,0.0,0.0,0.0,0.141,-12.952,-0.046,-0.489,11.75,0.0,0.0,0.0,0.0,0.0,5.088,4.075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-701.14,0.0,0.0,0.0,106.46,1066.18,694.74,0.0,1246.78,591.37,0.0,20.4,0.0,0.0,1108.09,3110.15,346.05,45.34,31.31,0.0,265.05,191.54,0.0,0.0,6887.93,0.0,0.0,3149.93,0.0,0.0,-5135.96,37.79,661.85,0.0,12023.89,51.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,33.31,0.0,0.0,0.0,976.08,0.0,0.0,0.0,0.0,0.0,731.17,1740.55,8628.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13764.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,1.372,0.0,0.0,0.0,0.444,4.402,2.71,0.0,5.053,2.431,0.0,0.072,0.0,0.0,3.901,12.344,1.495,0.274,0.112,0.0,1.061,0.757,0.0,0.0,0.0,0.0,12.779,0.0,0.0,-33.12,0.169,2.721,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,0.0,6.626,0.0,0.0,0.0,0.0,0.0,4.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.994,64.114,0.0,19.178,52.298,0.0,11.816,0.0,0.0,0.0,0.0,0.0,948.1,10606.7,4390.0,0.0,13730.0,0.0,1418.0,1200.0,2618.0,0.0,118.0,0.0,0.0,1003.0,4980.0,0.0,0.0,0.0,6541.0,441.0,0.0,0.0,263.0,0.0,0.0,4579.0,0.0,0.0,6589.0,13729.0,2298.0,0.0,89.6,4.28,10.869,7.818,0.0,6.496,0.0,3.978,0.626,6143.9,3612.4,6143.9,7.297,16.269,2.633,166.0,111.0,0.0,0.0,0.0,1333.33,118.8,-844.34,607.79,0.0,0.0,0.0,10.75,104.4,115.15,0.0,0.0,0.0,722.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2191.78,144.0,-1387.96,947.81,0.0,0.0,0.0,105.08,144.0,249.08,0.0,0.0,0.0,1196.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1839.08,390.0,-1164.61,1064.47,0.0,0.0,0.0,129.98,132.0,261.98,0.0,0.0,0.0,1326.45,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,623.0,0.0,623.0,623.0,63.3,0.0,0.0,4.39,0.0,6.87,6.87,66.0,70.7,565.5,565.5,0.0,0.0,12.56,16.15,13.41,2.45,3.78,2.7,1.19,0.81,0.89,13.18,17.36,3.55,5.72,570.0,6.14
-project_testing-0099.osw,0,0.0,-0.266,8.038,-0.347,0.0,-0.249,7.959,-0.57,2.354,-0.284,-0.053,0.0,0.867,0.0,0.0,0.0,2.6,0.0,-5.554,23.672,0.0,0.535,-0.174,0.264,0.0,0.387,-1.971,-0.724,-0.758,0.506,0.009,0.0,0.603,0.0,0.0,0.0,2.634,0.0,6.949,-3.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.01,11.84,3.72,90.31,391.66,2.69,13.93,228.11,107.35,0.0,7.12,0.0,0.0,0.0,104.26,0.0,5.11,15.21,0.0,132.95,63.87,0.0,0.0,1615.98,142.1,145.34,160.54,0.0,104.61,-206.37,0.0,43.97,0.0,1822.35,38.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1001.05,0.0,14.3,0.0,0.0,0.0,3.61,0.0,0.0,0.0,0.0,1018.96,5035.98,1006.31,0.0,0.0,0.0,0.0,1394.73,0.0,0.0,0.0,0.0,2401.04,5242.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.426,0.149,3.815,16.782,0.038,0.438,6.319,3.193,0.0,0.139,0.0,0.0,0.0,3.249,0.0,0.386,0.328,0.0,3.7,1.766,0.0,0.0,3.89,3.841,4.404,0.0,6.466,-23.914,0.0,1.308,0.0,1.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,6.796,0.0,0.097,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,5.66,0.0,0.0,0.0,0.0,7.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.397,82.311,0.0,37.975,61.889,0.0,6.918,13.504,0.0,0.0,2041.8,955.0,8967.9,29119.8,20117.0,0.0,12689.0,0.0,-115.0,400.0,285.0,0.0,420.0,3289.0,148.0,161.0,4060.0,450.0,0.0,0.0,20925.0,1062.0,11334.0,0.0,463.0,0.0,512.0,864.0,687.0,0.0,0.0,12689.0,2116.0,8047.0,82.04,45.68,38.615,5.888,0.0,19.645,0.0,8.26,1.509,5005.0,4939.8,4575.0,20.096,13.105,0.0,179.0,0.0,0.0,0.0,0.0,1505.44,105.6,-581.7,1029.34,0.0,0.0,0.0,6.29,140.4,146.69,412.79,0.0,412.79,1588.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4375.89,144.0,-1690.84,2829.05,0.0,0.0,0.0,88.46,144.0,232.46,397.36,0.0,397.36,3458.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.55,270.0,-841.02,1605.53,0.0,0.0,0.0,76.09,132.0,208.09,294.85,0.0,294.85,2108.47,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,372.52,0.0,0.0,1678.0,0.0,839.0,1678.0,57.2,93.2,839.0,20.12,0.0,12.69,0.0,50.0,0.0,1312.6,1312.6,328.2,393.9,14.96,14.46,15.19,4.48,3.51,3.88,1.23,0.79,0.91,15.27,14.73,4.71,3.84,6544.0,5.0
-project_testing-0100.osw,0,0.0,0.119,0.0,0.002,0.0,0.031,6.877,0.001,0.0,0.478,0.0,0.0,0.76,0.0,0.0,0.0,1.278,0.0,0.343,3.357,0.0,0.001,0.0,-0.0,0.0,0.0,-0.007,-0.001,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.81,61.74,3.63,0.0,0.0,36.71,0.0,0.0,0.0,0.0,0.06,0.0,0.0,6.63,0.0,0.0,0.0,33.34,0.0,0.0,323.38,0.0,0.0,0.0,0.0,45.49,0.0,0.0,112.98,0.0,323.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3898.97,0.0,0.0,0.0,3898.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,4222.49,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,0.0,0.0,0.14,4222.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.833,2.246,0.065,0.0,0.0,1.092,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.295,0.0,0.0,0.0,0.924,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.0,0.0,3.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.534,31.534,0.0,11.627,11.627,19.906,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,6446.0,0.0,3231.0,0.0,-49.0,600.0,551.0,0.0,88.0,0.0,0.0,52.0,4290.0,119.0,0.0,0.0,6422.0,0.0,1873.0,0.0,97.0,0.0,0.0,231.0,215.0,0.0,0.0,3231.0,1494.0,1194.0,82.04,45.68,13.242,0.001,0.0,0.0,0.0,0.0,4.023,762.3,740.6,642.3,3.535,0.237,0.0,0.0,0.0,0.0,0.0,0.0,282.84,105.6,0.0,388.44,544.19,0.0,544.19,0.0,0.0,0.0,0.02,0.0,0.02,932.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,822.12,144.0,0.0,966.12,696.2,0.0,696.2,0.0,0.0,0.0,0.02,0.0,0.02,1662.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,408.92,120.0,0.0,528.92,300.74,0.0,300.74,0.0,0.0,0.0,0.02,0.0,0.02,829.68,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.9,0.0,322.0,6.45,0.0,1.94,1.29,30.0,0.0,406.6,406.6,0.0,73.3,9.81,10.46,10.26,0.7,0.55,0.6,0.31,0.2,0.24,9.64,10.09,0.73,0.56,6130.0,0.76
+project_testing-0098.osw,0,-0.002,-0.002,0.0,0.0,0.0,-0.008,9.163,-0.018,0.229,-1.0,0.0,0.0,0.0,0.0,0.0,0.049,-0.333,0.0,0.0,0.0,-0.007,0.447,0.0,0.0,0.0,0.141,-12.952,-0.046,-0.489,11.75,0.0,0.0,0.0,0.0,0.0,5.088,4.075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-701.14,0.0,0.0,0.0,106.46,1066.18,694.74,0.0,1246.78,591.37,0.0,20.4,0.0,0.0,1108.09,3110.15,346.05,45.34,31.31,0.0,265.05,191.54,0.0,0.0,6887.93,0.0,0.0,3149.93,0.0,0.0,-5135.96,37.79,661.85,0.0,12023.89,51.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,33.31,0.0,0.0,0.0,976.08,0.0,0.0,0.0,0.0,0.0,731.17,1740.55,8628.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13764.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,1.372,0.0,0.0,0.0,0.444,4.402,2.71,0.0,5.053,2.431,0.0,0.072,0.0,0.0,3.901,12.344,1.495,0.274,0.112,0.0,1.061,0.757,0.0,0.0,0.0,0.0,12.779,0.0,0.0,-33.12,0.169,2.721,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,0.0,6.626,0.0,0.0,0.0,0.0,0.0,4.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.994,64.114,0.0,19.178,52.298,0.0,11.816,0.0,0.0,0.0,0.0,0.0,948.1,10606.7,4390.0,0.0,13730.0,0.0,1418.0,1200.0,2618.0,0.0,118.0,0.0,0.0,1003.0,4980.0,0.0,0.0,0.0,6541.0,441.0,0.0,0.0,263.0,0.0,0.0,4579.0,0.0,0.0,6589.0,13729.0,2298.0,0.0,89.6,4.28,10.869,7.818,0.0,6.496,0.0,3.978,0.626,6143.9,3612.4,6143.9,7.297,16.269,2.633,166.0,111.0,0.0,0.0,0.0,1333.33,388.8,-844.34,877.79,0.0,0.0,0.0,10.75,104.4,115.15,0.0,0.0,0.0,992.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2191.78,144.0,-1387.96,947.81,0.0,0.0,0.0,105.08,144.0,249.08,0.0,0.0,0.0,1196.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1839.08,390.0,-1164.61,1064.47,0.0,0.0,0.0,129.98,132.0,261.98,0.0,0.0,0.0,1326.45,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,623.0,0.0,623.0,623.0,63.3,0.0,0.0,4.39,0.0,6.87,6.87,66.0,70.7,565.5,565.5,0.0,0.0,12.56,16.15,13.41,2.45,3.78,2.7,1.19,0.81,0.89,13.18,17.36,3.55,5.72,570.0,6.14
+project_testing-0099.osw,0,0.0,-0.266,8.038,-0.347,0.0,-0.249,7.959,-0.57,2.354,-0.284,-0.053,0.0,0.867,0.0,0.0,0.0,2.6,0.0,-5.554,23.672,0.0,0.535,-0.174,0.264,0.0,0.387,-1.971,-0.724,-0.758,0.506,0.009,0.0,0.603,0.0,0.0,0.0,2.634,0.0,6.949,-3.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.01,11.84,3.72,90.31,391.66,2.69,13.93,228.11,107.35,0.0,7.12,0.0,0.0,0.0,104.26,0.0,5.11,15.21,0.0,132.95,63.87,0.0,0.0,1615.98,142.1,145.34,160.54,0.0,104.61,-206.37,0.0,43.97,0.0,1822.35,38.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1001.05,0.0,14.3,0.0,0.0,0.0,3.61,0.0,0.0,0.0,0.0,1018.96,5035.98,1006.31,0.0,0.0,0.0,0.0,1394.73,0.0,0.0,0.0,0.0,2401.04,5242.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.426,0.149,3.815,16.782,0.038,0.438,6.319,3.193,0.0,0.139,0.0,0.0,0.0,3.249,0.0,0.386,0.328,0.0,3.7,1.766,0.0,0.0,3.89,3.841,4.404,0.0,6.466,-23.914,0.0,1.308,0.0,1.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,6.796,0.0,0.097,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,5.66,0.0,0.0,0.0,0.0,7.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.397,82.311,0.0,37.975,61.889,0.0,6.918,13.504,0.0,0.0,2041.8,955.0,8967.9,29119.8,20117.0,0.0,12689.0,0.0,-115.0,400.0,285.0,0.0,420.0,3289.0,148.0,161.0,4060.0,450.0,0.0,0.0,20925.0,1062.0,11334.0,0.0,463.0,0.0,512.0,864.0,687.0,0.0,0.0,12689.0,2116.0,8047.0,82.04,45.68,38.615,5.888,0.0,19.645,0.0,8.26,1.509,5005.0,4939.8,4575.0,20.096,13.105,0.0,179.0,0.0,0.0,0.0,0.0,1505.44,195.6,-841.02,860.03,0.0,0.0,0.0,6.29,140.4,146.69,412.79,0.0,412.79,1419.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2249.92,258.0,-841.02,1666.91,0.0,0.0,0.0,8.16,97.2,105.36,530.73,0.0,530.73,2303.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.55,270.0,-841.02,1605.53,0.0,0.0,0.0,76.09,132.0,208.09,294.85,0.0,294.85,2108.47,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,372.52,0.0,0.0,1678.0,0.0,839.0,1678.0,57.2,93.2,839.0,20.12,0.0,12.69,0.0,50.0,0.0,1312.6,1312.6,328.2,393.9,14.96,14.46,15.19,4.48,3.51,3.88,1.23,0.79,0.91,15.27,14.73,4.71,3.84,6544.0,5.0
+project_testing-0100.osw,0,0.0,0.119,0.0,0.002,0.0,0.031,6.877,0.001,0.0,0.478,0.0,0.0,0.76,0.0,0.0,0.0,1.278,0.0,0.343,3.357,0.0,0.001,0.0,-0.0,0.0,0.0,-0.007,-0.001,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.81,61.74,3.63,0.0,0.0,36.71,0.0,0.0,0.0,0.0,0.06,0.0,0.0,6.63,0.0,0.0,0.0,33.34,0.0,0.0,323.38,0.0,0.0,0.0,0.0,45.49,0.0,0.0,112.98,0.0,323.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3898.97,0.0,0.0,0.0,3898.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,4222.49,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,0.0,0.0,0.14,4222.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.833,2.246,0.065,0.0,0.0,1.092,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.295,0.0,0.0,0.0,0.924,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.0,0.0,3.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.534,31.534,0.0,11.627,11.627,19.906,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,6446.0,0.0,3231.0,0.0,-49.0,600.0,551.0,0.0,88.0,0.0,0.0,52.0,4290.0,119.0,0.0,0.0,6422.0,0.0,1873.0,0.0,97.0,0.0,0.0,231.0,215.0,0.0,0.0,3231.0,1494.0,1194.0,82.04,45.68,13.242,0.001,0.0,0.0,0.0,0.0,4.023,762.3,740.6,642.3,3.535,0.237,0.0,0.0,0.0,0.0,0.0,0.0,282.84,105.6,0.0,388.44,544.19,0.0,544.19,0.0,0.0,0.0,0.02,0.0,0.02,932.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.88,108.0,0.0,448.88,386.66,0.0,386.66,0.0,0.0,0.0,0.03,0.0,0.03,835.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,408.92,120.0,0.0,528.92,300.74,0.0,300.74,0.0,0.0,0.0,0.02,0.0,0.02,829.68,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,0.0,0.0,0.0,322.0,0.0,0.0,322.0,30.9,0.0,322.0,6.45,0.0,1.94,1.29,30.0,0.0,406.6,406.6,0.0,73.3,9.81,10.46,10.26,0.7,0.55,0.6,0.31,0.2,0.24,9.64,10.09,0.73,0.56,6130.0,0.76
diff --git a/test/base_results/upgrades/annual/results_output.csv b/test/base_results/upgrades/annual/results_output.csv
index 751a6160e2..dac84f482a 100644
--- a/test/base_results/upgrades/annual/results_output.csv
+++ b/test/base_results/upgrades/annual/results_output.csv
@@ -80,20 +80,20 @@ project_national-Windows-0003.osw,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,
project_national-Windows-0004.osw,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,35.9,227.97,7.95,292.52,1082.92,0.0,33.68,0.0,0.0,0.0,163.18,0.0,0.05,1445.7,568.86,0.0,0.0,115.19,46.67,908.0,11.52,0.0,0.0,5821.98,0.0,0.0,589.43,0.0,0.0,0.0,116.51,175.94,0.0,5821.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,5821.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5821.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.232,2.082,0.078,2.56,9.723,0.0,0.266,0.0,0.0,0.0,0.761,0.0,0.0,6.807,4.341,0.0,0.0,0.63,0.341,6.639,0.075,0.0,0.0,0.0,0.0,4.069,0.0,0.0,0.0,1.107,1.242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.955,40.955,0.0,40.955,40.955,0.0,0.0,0.0,0.0,0.0,1070.5,581.1,1495.2,3892.7,52376.0,47965.0,52376.0,4907.0,5337.0,800.0,11044.0,2381.0,121.0,13723.0,0.0,2109.0,3320.0,0.0,0.0,0.0,26495.0,2726.0,2113.0,2235.0,166.0,15889.0,0.0,10478.0,0.0,0.0,8849.0,44066.0,4709.0,1738.0,90.32,28.4,33.977,18.923,0.0,3.272,0.0,0.0,1.067,8938.1,7505.4,8938.1,22.726,31.588,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,1573.35,144.0,0.0,1717.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1717.35,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,543.36,1698.0,0.0,1698.0,0.0,1698.0,2274.0,0.0,6595.46,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2542.4,52.38,47.97,52.38,0.0,50.0,150.0,6595.46,1488.0,2027.8,0.0,144.1,15.56,13.39,16.39,3.59,3.71,2.78,0.71,0.76,0.26,15.55,13.73,7.18,7.61,8384.0,8.94
project_national-Windows-0005.osw,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,30.21,116.81,6.77,153.61,761.52,0.0,33.29,0.0,0.0,0.0,34.13,0.0,0.0,2622.49,658.23,0.0,0.0,20.91,8.99,271.3,6.89,0.0,0.0,5842.44,0.0,0.0,716.75,0.0,0.0,0.0,130.8,131.95,0.0,5842.44,137.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,5842.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5842.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.279,1.365,0.08,1.752,8.633,0.0,0.333,0.0,0.0,0.0,0.264,0.0,0.0,20.261,6.505,0.0,0.0,0.178,0.085,2.575,0.075,0.0,0.0,0.0,0.0,6.863,0.0,0.0,0.0,1.384,1.308,0.0,1.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.224,53.224,0.0,53.224,53.224,0.0,0.0,0.0,0.0,0.0,305.7,726.3,2967.8,7726.8,27574.0,0.0,39131.0,0.0,0.0,0.0,0.0,1262.0,120.0,6489.0,2713.0,1864.0,3550.0,0.0,0.0,0.0,23497.0,4801.0,2698.0,1868.0,171.0,11523.0,3245.0,5198.0,0.0,0.0,6188.0,38242.0,7689.0,2360.0,98.96,27.14,29.717,20.438,0.0,5.486,0.0,0.0,1.016,8532.2,6142.9,8532.2,24.643,20.941,0.0,5.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,1859.99,144.0,0.0,2003.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2003.99,0.0,0.0,0.0,0.0,0.0,0.0,False,20.0,604.67,1377.5,0.0,2179.0,0.0,801.5,2755.0,0.0,8691.72,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,1540.1,27.57,0.0,39.13,0.0,50.0,101.8,8691.72,2396.2,2811.6,0.0,189.9,16.03,10.58,15.79,3.26,4.52,2.25,0.49,1.02,0.29,15.36,12.91,5.31,7.67,8074.0,8.53
project_testing-ASHP-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,209.7,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.81,0.0,0.0,0.0,0.0,0.0,0.0,1934.69,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1934.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,887.67,0.0,0.0,0.0,0.0,0.0,887.67,2822.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2822.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.936,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.202,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.933,13.933,0.0,7.907,7.907,0.0,6.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,0.174,-1.629,0.0,0.0,0.0,0.0,4.646,1228.4,1228.4,944.5,5.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201.61,118.8,0.0,320.41,0.0,0.0,0.0,5.48,104.4,109.88,0.0,0.0,0.0,430.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,331.41,144.0,0.0,475.41,0.0,0.0,0.0,53.59,144.0,197.59,0.0,0.0,0.0,673.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,278.08,120.0,0.0,398.08,0.0,0.0,0.0,66.29,132.0,198.29,0.0,0.0,0.0,596.37,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,1558.6,1558.6,0.0,0.0,13.75,14.69,11.41,0.69,0.57,0.71,0.14,0.12,0.13,7.82,15.55,1.03,1.04,5608.0,1.23
-project_testing-ASHP-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,105.6,-558.35,-302.34,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,403.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.2,144.0,-845.15,-263.94,0.0,0.0,0.0,0.0,0.0,0.0,679.25,0.0,679.25,415.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
+project_testing-ASHP-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,195.6,-1849.23,-1503.21,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,-797.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.88,438.0,-1849.23,-1241.35,0.0,0.0,0.0,0.0,0.0,0.0,907.22,0.0,907.22,-334.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
project_testing-ASHP-0003.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.203,0.485,0.0,2.258,0.0,151.934,-20.38,2.117,0.0,0.872,0.0,0.0,0.0,0.0,0.0,0.0,23.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,0.0,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.75,0.0,0.0,0.0,5.15,0.0,0.0,2424.91,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,2424.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,2380.78,0.0,0.0,0.0,26247.46,0.0,716.27,0.0,0.0,0.0,0.0,29344.51,51621.99,1669.47,0.0,0.0,0.0,0.0,15388.36,1326.31,0.0,0.0,1468.43,19852.57,51621.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.325,0.707,0.444,0.0,0.0,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,178.191,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,86.549,7.46,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,353.335,353.335,0.0,42.462,42.462,0.0,199.216,111.657,0.0,0.0,6086.4,3843.4,1087.5,18241.9,0.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,0.0,168.086,0.0,12.989,0.0,8.315,0.0,4032.1,4032.1,3802.0,0.0,139.784,0.0,0.0,532.0,0.0,0.0,0.0,1107.55,96.0,0.0,1203.55,0.0,0.0,0.0,187.26,108.0,295.26,4753.95,0.0,4753.95,6252.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1554.06,144.0,0.0,1698.06,0.0,0.0,0.0,2064.62,144.0,2208.62,3577.41,0.0,3577.41,7484.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1493.33,120.0,0.0,1613.33,0.0,0.0,0.0,2191.38,132.0,2323.38,2437.92,0.0,2437.92,6374.63,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,0.0,0.0,91.89,39.38,0.0,0.0,0.0,4323.2,4581.8,720.6,0.0,15.44,16.81,16.29,2.94,2.75,2.83,0.91,0.89,0.9,15.73,16.82,3.71,3.22,4312.0,4.03
-project_testing-ASHP-0004.osw,0,0.148,0.186,3.8,-0.233,0.0,2.378,1.171,-1.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.952,0.0,0.766,11.688,3.015,1.093,89.58,-1.315,0.0,411.238,-3.898,-1.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.055,0.0,77.226,-19.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.97,141.25,0.0,0.0,0.0,118.14,0.0,177.71,0.0,0.0,10433.76,0.0,0.0,11.25,0.0,0.0,0.0,0.0,0.0,0.0,9885.96,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,11086.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,42839.87,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,44039.95,0.0,0.0,0.0,0.0,30117.06,0.0,0.0,0.0,0.0,0.0,30117.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.356,3.896,0.0,0.0,0.0,1.94,0.0,2.568,0.0,0.0,153.554,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,299.427,333.218,0.0,131.714,165.505,0.0,6.836,10.292,150.585,0.0,0.0,0.0,0.0,0.0,435995.0,147755.0,180752.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,108697.0,1072.0,147537.0,0.0,0.0,0.0,293391.0,5109.0,29442.0,87.98,17.6,18.994,572.304,102.398,0.0,0.0,0.0,3.359,19144.0,5358.3,19144.0,60.891,310.136,0.0,14.0,627.0,0.0,0.0,0.0,4559.45,105.6,-930.91,3734.14,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,6225.05,1927.49,0.0,1927.49,0.0,0.0,0.0,0.0,0.0,0.0,9707.24,144.0,-1981.94,7869.31,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,10751.6,2258.78,0.0,2258.78,0.0,0.0,0.0,0.0,0.0,0.0,5820.57,390.0,-1188.39,5022.18,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,7712.87,2258.78,0.0,2258.78,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,9037.6,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,436.0,147.76,180.75,0.0,50.0,0.0,9037.6,2229.8,2471.9,371.6,668.9,13.07,11.18,8.65,2.38,13.8,3.78,0.14,5.15,0.79,13.36,11.18,4.52,18.95,88.0,19.14
-project_testing-ASHP-0005.osw,0,-0.038,-0.075,0.0,-0.049,0.0,-8.726,23.559,-0.464,3.909,-0.669,0.0,0.0,0.0,0.0,0.0,0.0,0.692,0.0,0.0,0.0,-0.036,0.358,0.0,-0.047,0.0,18.169,-17.795,-0.461,-3.689,0.767,0.0,0.0,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-357.48,0.0,0.0,3.69,10.23,51.35,246.72,19.65,0.0,0.0,0.0,0.09,0.0,0.0,12.66,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,446.35,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,982.91,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.88,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16357.15,0.0,0.0,0.0,0.0,0.0,0.0,14721.28,0.0,0.0,0.0,14721.28,16893.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.377,1.956,7.777,0.653,0.0,0.0,0.0,0.002,0.0,0.0,0.215,0.0,1.495,0.384,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.992,136.168,0.0,-16.876,45.3,0.004,8.07,82.795,0.0,0.0,569.5,1366.9,3981.6,49883.5,38527.0,8133.0,13935.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,18.208,-0.672,0.003,26.463,0.0,11.794,1.911,3321.6,3194.5,3185.0,13.529,12.466,4.46,0.0,1.0,0.0,0.0,0.0,1101.69,105.6,-1250.07,-42.78,0.12,0.0,0.12,7.34,140.4,147.74,2530.84,0.0,2530.84,2635.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3202.29,144.0,-3350.67,-4.38,0.16,0.0,0.16,103.19,144.0,247.19,2436.25,0.0,2436.25,2679.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.8,510.0,-1765.91,336.89,0.07,0.0,0.07,88.77,132.0,220.77,1807.74,0.0,1807.74,2365.47,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,696.75,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,38.53,8.13,13.94,0.0,50.0,0.0,696.75,1166.1,1166.1,0.0,0.0,9.93,10.92,10.18,2.71,2.4,2.44,1.12,0.54,0.72,9.45,10.73,2.92,2.62,6681.0,3.32
+project_testing-ASHP-0004.osw,0,0.148,0.186,3.8,-0.233,0.0,2.378,1.171,-1.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.952,0.0,0.766,11.688,3.015,1.093,89.58,-1.315,0.0,411.238,-3.898,-1.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.055,0.0,77.226,-19.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.97,141.25,0.0,0.0,0.0,118.14,0.0,177.71,0.0,0.0,10433.76,0.0,0.0,11.25,0.0,0.0,0.0,0.0,0.0,0.0,9885.96,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,11086.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,42839.87,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,44039.95,0.0,0.0,0.0,0.0,30117.06,0.0,0.0,0.0,0.0,0.0,30117.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.356,3.896,0.0,0.0,0.0,1.94,0.0,2.568,0.0,0.0,153.554,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,299.427,333.218,0.0,131.714,165.505,0.0,6.836,10.292,150.585,0.0,0.0,0.0,0.0,0.0,435995.0,147755.0,180752.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,108697.0,1072.0,147537.0,0.0,0.0,0.0,293391.0,5109.0,29442.0,87.98,17.6,18.994,572.304,102.398,0.0,0.0,0.0,3.359,19144.0,5358.3,19144.0,60.891,310.136,0.0,14.0,627.0,0.0,0.0,0.0,4559.45,375.6,-930.91,4004.14,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,6495.05,1927.49,0.0,1927.49,0.0,0.0,0.0,0.0,0.0,0.0,9707.24,144.0,-1981.94,7869.31,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,10751.6,2258.78,0.0,2258.78,0.0,0.0,0.0,0.0,0.0,0.0,5820.57,390.0,-1188.39,5022.18,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,7712.87,2258.78,0.0,2258.78,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,9037.6,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,436.0,147.76,180.75,0.0,50.0,0.0,9037.6,2229.8,2471.9,371.6,668.9,13.07,11.18,8.65,2.38,13.8,3.78,0.14,5.15,0.79,13.36,11.18,4.52,18.95,88.0,19.14
+project_testing-ASHP-0005.osw,0,-0.038,-0.075,0.0,-0.049,0.0,-8.726,23.559,-0.464,3.909,-0.669,0.0,0.0,0.0,0.0,0.0,0.0,0.692,0.0,0.0,0.0,-0.036,0.358,0.0,-0.047,0.0,18.169,-17.795,-0.461,-3.689,0.767,0.0,0.0,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-357.48,0.0,0.0,3.69,10.23,51.35,246.72,19.65,0.0,0.0,0.0,0.09,0.0,0.0,12.66,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,446.35,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,982.91,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.88,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16357.15,0.0,0.0,0.0,0.0,0.0,0.0,14721.28,0.0,0.0,0.0,14721.28,16893.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.377,1.956,7.777,0.653,0.0,0.0,0.0,0.002,0.0,0.0,0.215,0.0,1.495,0.384,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.992,136.168,0.0,-16.876,45.3,0.004,8.07,82.795,0.0,0.0,569.5,1366.9,3981.6,49883.5,38527.0,8133.0,13935.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,18.208,-0.672,0.003,26.463,0.0,11.794,1.911,3321.6,3194.5,3185.0,13.529,12.466,4.46,0.0,1.0,0.0,0.0,0.0,1101.69,195.6,-2186.32,-889.03,0.12,0.0,0.12,7.34,140.4,147.74,2530.84,0.0,2530.84,1789.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1617.54,498.0,-2186.32,-70.78,0.09,0.0,0.09,9.52,97.2,106.72,3253.94,0.0,3253.94,3289.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.8,510.0,-1765.91,336.89,0.07,0.0,0.07,88.77,132.0,220.77,1807.74,0.0,1807.74,2365.47,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,696.75,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,38.53,8.13,13.94,0.0,50.0,0.0,696.75,1166.1,1166.1,0.0,0.0,9.93,10.92,10.18,2.71,2.4,2.44,1.12,0.54,0.72,9.45,10.73,2.92,2.62,6681.0,3.32
project_testing-Air Leakage-0001.osw,0,0.0,0.003,0.0,-1.114,0.0,-1.781,2.869,-0.088,0.0,0.0,0.0,0.0,2.163,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.87,150.55,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.65,0.0,0.0,0.0,0.0,0.0,0.0,2126.24,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2126.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,893.09,0.0,0.0,0.0,0.0,0.0,893.09,3019.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3019.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,1.049,0.672,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.198,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.752,14.752,0.0,8.689,8.689,0.0,6.063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,3542.0,1200.0,4742.0,0.0,423.0,0.0,844.0,2504.0,3780.0,1254.0,0.0,0.0,11273.0,2468.0,0.0,0.0,939.0,0.0,4080.0,23232.0,3923.0,0.0,0.0,41741.0,9568.0,0.0,89.6,4.28,2.473,-1.187,0.0,0.0,0.0,0.0,4.674,2208.0,2208.0,928.5,10.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,221.54,118.8,0.0,340.34,0.0,0.0,0.0,5.52,104.4,109.92,0.0,0.0,0.0,450.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,364.17,144.0,0.0,508.17,0.0,0.0,0.0,53.92,144.0,197.92,0.0,0.0,0.0,706.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,305.57,120.0,0.0,425.57,0.0,0.0,0.0,66.69,132.0,198.69,0.0,0.0,0.0,624.26,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,10895.0,0.0,2179.0,0.0,16342.5,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,16342.5,1558.6,1558.6,0.0,0.0,14.4,14.52,11.95,0.95,0.56,0.69,0.16,0.11,0.13,15.55,12.27,1.54,0.97,4911.0,2.21
-project_testing-Air Leakage-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.033,0.936,0.0,-0.046,0.0,13.727,-5.165,-0.336,0.0,0.032,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,1.495,-1.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-115.5,0.0,0.0,0.0,0.0,0.0,39.34,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.16,0.0,0.0,0.0,2.48,0.0,0.0,-396.84,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,57.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2562.45,0.0,0.0,0.0,0.0,0.0,2959.28,0.0,0.0,0.0,0.0,2959.28,3016.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.0,0.0,1.068,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-30.223,22.388,0.0,-46.867,5.744,0.0,0.0,16.644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-451.0,1200.0,749.0,0.0,420.0,0.0,0.0,1154.0,4980.0,0.0,0.0,0.0,7812.0,194.0,1064.0,0.0,463.0,0.0,0.0,7788.0,0.0,0.0,0.0,9085.0,316.0,518.0,82.04,45.68,0.249,10.934,0.0,0.0,0.0,0.0,0.0,1330.9,1330.9,790.3,4.847,12.008,8753.0,0.0,3.0,0.0,0.0,0.0,139.03,105.6,-551.08,-306.46,0.0,0.0,0.0,0.0,0.0,0.0,508.77,0.0,508.77,202.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,404.11,144.0,-816.17,-268.06,0.0,0.0,0.0,0.0,0.0,0.0,489.75,0.0,489.75,221.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201.0,450.0,-681.74,-30.73,0.0,0.0,0.0,0.0,0.0,0.0,363.4,0.0,363.4,332.67,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,11858.8,0.0,1682.0,2.3,17788.21,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,17788.21,244.6,244.6,0.0,73.4,8.0,8.67,9.9,0.67,0.39,0.52,0.12,0.1,0.11,11.45,8.27,0.85,0.47,5408.0,1.33
+project_testing-Air Leakage-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.033,0.936,0.0,-0.046,0.0,13.727,-5.165,-0.336,0.0,0.032,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,1.495,-1.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-115.5,0.0,0.0,0.0,0.0,0.0,39.34,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.16,0.0,0.0,0.0,2.48,0.0,0.0,-396.84,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,57.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2562.45,0.0,0.0,0.0,0.0,0.0,2959.28,0.0,0.0,0.0,0.0,2959.28,3016.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.0,0.0,1.068,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-30.223,22.388,0.0,-46.867,5.744,0.0,0.0,16.644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-451.0,1200.0,749.0,0.0,420.0,0.0,0.0,1154.0,4980.0,0.0,0.0,0.0,7812.0,194.0,1064.0,0.0,463.0,0.0,0.0,7788.0,0.0,0.0,0.0,9085.0,316.0,518.0,82.04,45.68,0.249,10.934,0.0,0.0,0.0,0.0,0.0,1330.9,1330.9,790.3,4.847,12.008,8753.0,0.0,3.0,0.0,0.0,0.0,139.03,195.6,-1849.23,-1514.61,0.0,0.0,0.0,0.0,0.0,0.0,508.77,0.0,508.77,-1005.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,154.64,438.0,-1849.23,-1256.59,0.0,0.0,0.0,0.0,0.0,0.0,654.13,0.0,654.13,-602.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201.0,450.0,-681.74,-30.73,0.0,0.0,0.0,0.0,0.0,0.0,363.4,0.0,363.4,332.67,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,11858.8,0.0,1682.0,2.3,17788.21,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,17788.21,244.6,244.6,0.0,73.4,8.0,8.67,9.9,0.67,0.39,0.52,0.12,0.1,0.11,11.45,8.27,0.85,0.47,5408.0,1.33
project_testing-Air Leakage-0003.osw,0,0.86,0.277,0.0,0.778,0.0,4.207,18.829,2.377,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,7.388,0.0,0.0,0.0,2.227,0.51,0.0,2.277,0.0,118.255,-21.605,3.009,0.0,0.869,0.0,0.0,0.0,0.0,0.0,0.0,24.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1775.36,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4200.21,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4200.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,2380.78,0.0,0.0,0.0,21333.9,0.0,716.27,0.0,0.0,0.0,0.0,24430.95,45610.79,1669.47,0.0,0.0,0.0,0.0,12507.65,1334.07,0.0,0.0,1468.43,16979.63,45610.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.707,0.444,0.0,23.004,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,144.833,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,70.347,7.503,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.822,326.822,0.0,65.466,65.466,0.0,165.858,95.499,0.0,0.0,6085.4,3842.9,1090.1,18286.4,91371.0,0.0,131268.0,0.0,40035.0,1200.0,41235.0,1058.0,248.0,0.0,637.0,30009.0,3780.0,0.0,0.0,0.0,42188.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,87117.0,0.0,0.0,0.0,102229.0,12512.0,0.0,95.0,32.9,38.995,136.14,0.0,12.979,0.0,8.277,0.0,11508.4,11508.4,3802.0,45.701,134.319,0.0,76.0,380.0,0.0,0.0,0.0,1707.56,96.0,0.0,1803.56,0.0,0.0,0.0,155.91,108.0,263.91,4065.98,0.0,4065.98,6133.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2395.96,144.0,0.0,2539.96,0.0,0.0,0.0,1718.91,144.0,1862.91,3059.71,0.0,3059.71,7462.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2302.33,120.0,0.0,2422.33,0.0,0.0,0.0,1824.44,132.0,1956.44,2085.12,0.0,2085.12,6463.89,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,55870.0,1862.3,0.0,0.0,83805.0,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,83805.0,4323.2,4581.8,720.6,0.0,16.02,16.81,16.46,6.72,2.75,3.27,0.98,0.89,0.9,16.0,16.73,10.17,3.23,5128.0,11.51
-project_testing-Air Leakage-0004.osw,0,0.127,0.188,3.495,-0.524,0.0,1.161,1.253,-1.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.889,0.0,0.474,12.516,3.072,1.125,-0.018,4.372,0.0,324.436,-3.779,-1.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.354,0.0,78.842,-18.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.56,239.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.13,0.0,0.0,0.0,0.0,0.0,0.0,-566.96,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,633.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,121541.19,0.0,0.0,0.0,0.0,0.0,24001.86,1808.81,0.0,0.0,0.0,25810.67,122741.27,0.0,0.0,0.0,0.0,0.0,95290.52,0.0,0.0,0.0,0.0,95290.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,2.007,6.029,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.994,10.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,476.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,607.831,641.623,0.0,-20.624,13.167,0.0,6.836,145.167,476.453,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6592.0,19376.0,1200.0,27168.0,893.0,224.0,26228.0,266.0,13665.0,3780.0,0.0,0.0,0.0,66273.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,110653.0,0.0,0.0,0.0,147810.0,5109.0,29442.0,87.98,17.6,17.54,404.882,0.0,0.0,0.0,0.0,3.319,8081.9,8081.9,417.6,51.094,201.68,0.0,16.0,92.0,0.0,0.0,0.0,362.74,105.6,-544.07,-75.73,0.0,0.0,0.0,6.43,118.8,125.23,6180.69,0.0,6180.69,12328.78,6098.59,0.0,6098.59,0.0,0.0,0.0,0.0,0.0,0.0,772.28,144.0,-953.61,-37.33,0.0,0.0,0.0,97.29,144.0,241.29,5391.16,0.0,5391.16,12741.91,7146.79,0.0,7146.79,0.0,0.0,0.0,0.0,0.0,0.0,463.07,390.0,-674.62,178.45,0.0,0.0,0.0,75.2,132.0,207.2,3169.58,0.0,3169.58,10702.02,7146.79,0.0,7146.79,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,45429.43,1076.0,3228.0,0.0,68144.15,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,68144.15,2229.8,2471.9,371.6,668.9,14.43,15.7,15.01,3.68,0.39,0.77,0.13,0.12,0.1,14.09,15.55,6.91,0.43,4909.0,8.08
-project_testing-Air Leakage-0005.osw,0,-0.032,-0.114,0.0,-0.042,0.0,-7.198,18.324,-0.397,3.815,-0.693,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,0.0,-0.039,0.321,0.0,-0.051,0.0,12.564,-12.818,-0.493,-2.829,0.631,0.0,0.0,0.0,0.0,0.0,0.0,2.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-355.78,0.0,0.0,3.69,53.72,95.05,169.62,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,445.39,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,981.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.34,0.0,0.0,0.0,0.0,12.34,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16352.26,0.0,0.0,0.0,0.0,0.0,12.78,14693.11,0.0,0.0,0.0,14705.89,16888.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.805,0.0,0.0,0.149,1.804,3.151,5.169,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.063,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.072,82.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.757,135.933,0.0,-17.08,45.096,0.063,8.07,82.704,0.0,0.0,569.5,1366.9,3981.0,49875.6,6209.0,0.0,16266.0,0.0,-625.0,1200.0,575.0,0.0,132.0,0.0,0.0,1607.0,3780.0,0.0,0.0,0.0,5860.0,341.0,0.0,0.0,146.0,0.0,0.0,10856.0,0.0,0.0,0.0,12646.0,1645.0,0.0,82.04,45.68,15.568,-0.697,0.0,26.463,0.0,11.802,1.887,3567.5,3419.2,3309.9,9.59,5.246,4.32,176.0,0.0,0.0,0.0,0.0,1096.74,105.6,-1246.91,-44.57,1.72,0.0,1.72,7.34,140.4,147.74,2528.07,0.0,2528.07,2632.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3187.91,144.0,-3338.07,-6.17,2.2,0.0,2.2,103.19,144.0,247.19,2433.58,0.0,2433.58,2676.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1585.65,510.0,-1760.84,334.8,0.95,0.0,0.95,88.77,132.0,220.77,1805.76,0.0,1805.76,2362.28,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,16550.0,0.0,2648.0,0.0,24825.0,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,24825.0,1166.1,1166.1,0.0,0.0,10.07,10.5,10.82,2.71,2.32,2.44,0.96,0.53,0.68,9.45,10.73,2.99,2.53,6681.0,3.57
-project_testing-All Upgrades-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.63,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,332.17,0.0,67.92,0.0,0.0,0.0,0.0,0.0,0.0,-389.38,574.67,575.1,0.0,0.0,0.0,-2853.31,0.0,289.04,0.0,2463.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,-389.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2463.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.446,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,1.25,0.0,0.337,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,-18.4,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.408,9.992,0.0,-8.408,9.992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3542.0,1200.0,4742.0,0.0,423.0,0.0,844.0,2504.0,4980.0,1254.0,0.0,0.0,11052.0,1047.0,0.0,0.0,939.0,0.0,4080.0,23232.0,3923.0,0.0,0.0,38262.0,6088.0,0.0,89.6,4.28,0.256,-0.577,0.0,0.0,0.0,0.0,2.175,1370.9,1250.5,1370.9,5.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,254.76,118.8,-328.69,44.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,418.79,144.0,-492.72,70.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.4,270.0,-437.64,183.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,183.75,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,10895.0,0.0,2179.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",3444.51,999.0,"Insulation Wall|Wood Stud, R-13",3132.79,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,16342.5,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1634.25,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,2179.0,0.0,0.0,0.0,0.0,66.0,0.0,48654.04,1558.6,1558.6,0.0,0.0,14.71,14.54,13.47,0.73,0.88,0.76,0.21,0.16,0.19,13.55,16.36,1.02,1.23,88.0,1.37
-project_testing-All Upgrades-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.025,0.922,0.0,-0.035,0.0,13.617,-4.866,-0.283,0.0,0.031,0.0,0.0,0.0,0.0,0.0,0.0,0.112,0.0,1.484,-1.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-130.42,0.0,0.0,0.0,0.0,0.0,37.28,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,19.74,0.0,9.27,0.0,0.0,0.0,2.48,0.0,0.0,-146.32,0.0,0.0,0.0,0.0,0.0,-206.37,0.0,39.95,0.0,60.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,2755.41,0.0,0.0,0.0,0.0,0.0,2901.73,0.0,0.0,0.0,0.0,2901.73,2961.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.686,0.0,0.0,0.0,0.0,0.0,1.045,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.453,0.0,0.0,0.0,0.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.914,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,-1.207,22.707,0.0,-17.527,6.387,0.0,0.0,16.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-451.0,1200.0,749.0,0.0,420.0,0.0,0.0,1154.0,4980.0,0.0,0.0,0.0,7650.0,32.0,1064.0,0.0,463.0,0.0,0.0,7788.0,0.0,0.0,0.0,8949.0,180.0,518.0,82.04,45.68,0.477,10.957,0.0,0.0,0.0,0.0,1.576,1255.8,1240.7,713.9,4.875,11.987,2403.192,0.0,3.0,0.0,0.0,0.0,154.7,105.6,-308.8,-48.5,0.0,0.0,0.0,0.0,0.0,0.0,498.87,0.0,498.87,450.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,449.66,144.0,-603.76,-10.1,0.0,0.0,0.0,0.0,0.0,0.0,480.22,0.0,480.22,470.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,223.66,270.0,-403.44,90.22,0.0,0.0,0.0,0.0,0.0,0.0,356.34,0.0,356.34,446.56,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,11858.8,0.0,1682.0,2.3,3359.52,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",540.57,999.0,"Insulation Wall|Wood Stud, R-13",491.65,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,17788.21,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1261.5,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,0.0,0.0,0.0,7.0,4.67,66.0,0.0,47541.44,244.6,244.6,0.0,73.4,6.96,13.17,13.27,0.77,0.47,0.61,0.12,0.1,0.11,7.18,13.82,0.93,0.53,6709.0,1.26
-project_testing-All Upgrades-0003.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.231,0.487,0.0,1.278,0.0,110.65,-17.952,2.074,-1.747,0.844,0.0,0.0,0.0,0.0,0.0,0.0,18.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.48,18.41,37.0,24.24,0.0,0.0,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,74.23,0.71,19.1,12.22,0.0,252.6,5.15,0.0,0.0,1614.28,545.89,551.46,763.64,0.0,0.0,-1091.61,15.16,67.05,0.0,2705.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2380.78,0.0,0.0,0.0,18851.83,0.0,716.27,0.0,0.0,0.0,0.0,21948.88,37753.55,1669.47,0.0,0.0,0.0,0.0,11052.49,0.0,0.0,0.0,1468.43,14190.39,38845.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.514,0.325,0.707,0.444,0.0,0.0,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,1.607,0.013,0.379,0.215,0.0,4.405,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,-22.767,0.282,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,127.983,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,62.162,0.0,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,256.444,279.211,0.0,27.625,50.392,0.0,149.008,79.811,0.0,0.0,6096.1,3853.7,1176.0,19726.2,0.0,0.0,131268.0,0.0,40035.0,1200.0,41235.0,1058.0,248.0,0.0,462.0,30009.0,4980.0,0.0,0.0,0.0,40382.0,3624.0,0.0,1122.0,297.0,0.0,857.0,87117.0,0.0,0.0,0.0,98795.0,9403.0,0.0,95.0,32.9,0.0,120.357,0.0,12.688,0.0,8.914,1.364,4346.1,4209.5,4281.4,0.0,134.48,1.591,0.0,286.0,0.0,0.0,0.0,1314.26,96.0,-593.71,816.55,0.0,0.0,0.0,140.07,108.0,248.07,3398.06,0.0,3398.06,4462.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1844.11,144.0,-833.07,1155.04,0.0,0.0,0.0,1544.28,144.0,1688.28,2557.09,0.0,2557.09,5400.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1772.04,270.0,-800.51,1241.53,0.0,0.0,0.0,1639.09,132.0,1771.09,1742.6,0.0,1742.6,4755.22,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,55870.0,1862.3,5587.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",9554.27,999.0,"Insulation Wall|Wood Stud, R-13",8689.63,999.0,Insulation Sheathing|R-5,1564.33,999.0,Geometry Foundation Type|Unvented Crawlspace,756.63,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",431.67,999.0,"Insulation Rim Joist|R-13, Interior",,,,83805.0,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,4190.25,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,138.8,2082.2,0.0,0.0,91.89,39.38,66.0,0.0,133091.78,4323.2,4581.8,720.6,0.0,15.72,17.57,16.74,3.21,3.25,3.26,1.06,1.0,1.02,15.91,17.45,4.02,3.79,6520.0,4.35
-project_testing-All Upgrades-0004.osw,0,0.239,0.182,2.167,0.002,0.0,2.352,1.067,-0.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.138,0.0,1.474,3.381,3.237,1.139,15.126,-2.061,0.0,317.745,-3.364,-0.732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.145,0.0,30.107,-6.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,86.43,0.0,0.0,0.0,118.14,0.0,106.74,0.0,0.0,6406.6,78.06,0.0,22.2,0.0,0.0,0.0,0.0,0.0,0.0,6277.82,0.0,190.97,0.0,0.0,0.0,-811.71,0.0,72.38,0.0,7089.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,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,31611.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32423.03,0.0,0.0,0.0,0.0,24326.54,0.0,0.0,0.0,0.0,0.0,24326.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.211,2.317,0.0,0.0,0.0,1.94,0.0,1.553,0.0,0.0,94.774,1.261,0.0,0.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-22.792,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212.325,235.117,0.0,83.857,106.648,0.0,6.836,0.0,121.633,0.0,0.0,0.0,0.0,0.0,273034.0,147755.0,113193.0,3778.0,19376.0,1200.0,24354.0,893.0,224.0,14157.0,184.0,13665.0,4980.0,0.0,0.0,0.0,43253.0,1749.0,7400.0,1114.0,419.0,52516.0,744.0,110653.0,0.0,0.0,0.0,180441.0,4830.0,10165.0,87.98,17.6,11.022,369.131,82.71,0.0,0.0,0.0,1.582,12869.0,3553.2,12869.0,38.94,236.634,0.0,13.0,200.0,0.0,0.0,0.0,2938.02,105.6,-627.88,2415.74,0.0,0.0,0.0,6.43,118.8,125.23,0.0,0.0,0.0,4097.87,1556.9,0.0,1556.9,0.0,0.0,0.0,0.0,0.0,0.0,6255.16,144.0,-1336.78,5062.38,0.0,0.0,0.0,97.29,144.0,241.29,0.0,0.0,0.0,7128.16,1824.49,0.0,1824.49,0.0,0.0,0.0,0.0,0.0,0.0,3750.66,270.0,-801.55,3219.12,0.0,0.0,0.0,75.2,132.0,207.2,0.0,0.0,0.0,5250.81,1824.49,0.0,1824.49,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,45429.43,1076.0,3228.0,0.0,30615.55,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",4927.86,999.0,"Insulation Wall|Wood Stud, R-13",4481.9,999.0,Insulation Sheathing|R-5,903.84,999.0,Geometry Foundation Type|Unvented Crawlspace,390.18,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",327.79,999.0,"Insulation Rim Joist|R-13, Interior",,,,68144.15,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,2421.0,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,5659.65,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,105.4,1203.0,273.03,147.76,113.19,0.0,66.0,0.0,141971.92,2229.8,2471.9,371.6,668.9,12.6,11.33,8.72,1.73,8.85,2.53,0.2,3.26,0.7,13.18,13.18,3.02,12.45,318.0,12.87
-project_testing-All Upgrades-0005.osw,0,0.035,-0.062,0.0,0.051,0.0,-5.728,19.608,-0.018,0.906,-0.516,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,0.0,0.037,0.331,0.0,0.054,0.0,12.91,-12.578,-0.014,-1.396,0.838,0.0,0.0,0.0,0.0,0.0,0.0,1.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-80.42,0.0,0.0,3.69,8.06,40.84,258.63,19.65,0.0,0.0,0.0,0.23,0.0,0.0,24.99,554.89,45.48,4.05,6.13,0.0,79.82,3.96,0.0,0.0,1452.75,0.0,0.0,458.7,0.0,150.51,-206.37,0.0,79.91,0.0,1659.12,0.0,0.0,0.0,0.0,0.0,0.0,1.38,0.0,0.0,0.0,0.0,0.0,1.38,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,2642.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2849.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.305,0.0,0.0,0.149,0.283,1.493,8.033,0.653,0.0,0.0,0.0,0.005,0.0,0.0,0.546,16.011,1.495,0.372,0.132,0.0,2.302,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-23.914,0.0,2.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.394,64.308,0.0,32.317,56.231,0.007,8.07,0.0,0.0,0.0,569.6,1367.2,3972.1,49763.8,43127.0,8133.0,15599.0,0.0,-625.0,1200.0,575.0,0.0,132.0,0.0,0.0,1607.0,4980.0,0.0,0.0,0.0,6995.0,275.0,0.0,0.0,146.0,0.0,0.0,10856.0,0.0,0.0,0.0,12563.0,1561.0,0.0,82.04,45.68,14.513,1.874,0.005,26.463,0.0,11.403,1.52,4884.5,4368.0,4759.5,10.667,15.35,1.437,0.0,5.0,0.0,0.0,0.0,1367.77,105.6,-581.66,891.71,0.19,0.0,0.19,7.34,140.4,147.74,0.0,0.0,0.0,1039.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3975.7,144.0,-1690.71,2428.99,0.25,0.0,0.25,103.19,144.0,247.19,0.0,0.0,0.0,2676.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1977.49,270.0,-840.95,1406.54,0.11,0.0,0.11,88.77,132.0,220.77,0.0,0.0,0.0,1627.42,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,16550.0,0.0,2648.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",2577.08,999.0,"Insulation Wall|Wood Stud, R-13",2343.86,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,24825.0,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1986.0,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,779.95,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,0.0,43.13,8.13,15.6,0.0,66.0,0.0,56611.89,1166.1,1166.1,0.0,0.0,8.78,9.92,9.56,3.65,3.88,3.63,1.13,0.56,0.72,9.0,10.18,3.99,4.17,6681.0,4.88
+project_testing-Air Leakage-0004.osw,0,0.127,0.188,3.495,-0.524,0.0,1.161,1.253,-1.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.889,0.0,0.474,12.516,3.072,1.125,-0.018,4.372,0.0,324.436,-3.779,-1.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.354,0.0,78.842,-18.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.56,239.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.13,0.0,0.0,0.0,0.0,0.0,0.0,-566.96,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,633.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,121541.19,0.0,0.0,0.0,0.0,0.0,24001.86,1808.81,0.0,0.0,0.0,25810.67,122741.27,0.0,0.0,0.0,0.0,0.0,95290.52,0.0,0.0,0.0,0.0,95290.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,2.007,6.029,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.994,10.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,476.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,607.831,641.623,0.0,-20.624,13.167,0.0,6.836,145.167,476.453,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6592.0,19376.0,1200.0,27168.0,893.0,224.0,26228.0,266.0,13665.0,3780.0,0.0,0.0,0.0,66273.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,110653.0,0.0,0.0,0.0,147810.0,5109.0,29442.0,87.98,17.6,17.54,404.882,0.0,0.0,0.0,0.0,3.319,8081.9,8081.9,417.6,51.094,201.68,0.0,16.0,92.0,0.0,0.0,0.0,362.74,375.6,-574.29,164.05,0.0,0.0,0.0,6.43,118.8,125.23,6180.69,0.0,6180.69,12568.56,6098.59,0.0,6098.59,0.0,0.0,0.0,0.0,0.0,0.0,772.28,144.0,-953.61,-37.33,0.0,0.0,0.0,97.29,144.0,241.29,5391.16,0.0,5391.16,12741.91,7146.79,0.0,7146.79,0.0,0.0,0.0,0.0,0.0,0.0,463.07,390.0,-674.62,178.45,0.0,0.0,0.0,75.2,132.0,207.2,3169.58,0.0,3169.58,10702.02,7146.79,0.0,7146.79,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,45429.43,1076.0,3228.0,0.0,68144.15,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,68144.15,2229.8,2471.9,371.6,668.9,14.43,15.7,15.01,3.68,0.39,0.77,0.13,0.12,0.1,14.09,15.55,6.91,0.43,4909.0,8.08
+project_testing-Air Leakage-0005.osw,0,-0.032,-0.114,0.0,-0.042,0.0,-7.198,18.324,-0.397,3.815,-0.693,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,0.0,-0.039,0.321,0.0,-0.051,0.0,12.564,-12.818,-0.493,-2.829,0.631,0.0,0.0,0.0,0.0,0.0,0.0,2.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-355.78,0.0,0.0,3.69,53.72,95.05,169.62,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,445.39,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,981.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.34,0.0,0.0,0.0,0.0,12.34,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16352.26,0.0,0.0,0.0,0.0,0.0,12.78,14693.11,0.0,0.0,0.0,14705.89,16888.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.805,0.0,0.0,0.149,1.804,3.151,5.169,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.063,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.072,82.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.757,135.933,0.0,-17.08,45.096,0.063,8.07,82.704,0.0,0.0,569.5,1366.9,3981.0,49875.6,6209.0,0.0,16266.0,0.0,-625.0,1200.0,575.0,0.0,132.0,0.0,0.0,1607.0,3780.0,0.0,0.0,0.0,5860.0,341.0,0.0,0.0,146.0,0.0,0.0,10856.0,0.0,0.0,0.0,12646.0,1645.0,0.0,82.04,45.68,15.568,-0.697,0.0,26.463,0.0,11.802,1.887,3567.5,3419.2,3309.9,9.59,5.246,4.32,176.0,0.0,0.0,0.0,0.0,1096.74,195.6,-2186.32,-893.98,1.72,0.0,1.72,7.34,140.4,147.74,2528.07,0.0,2528.07,1783.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1609.78,498.0,-2186.32,-78.53,1.22,0.0,1.22,9.52,97.2,106.72,3250.38,0.0,3250.38,3279.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1585.65,510.0,-1760.84,334.8,0.95,0.0,0.95,88.77,132.0,220.77,1805.76,0.0,1805.76,2362.28,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,16550.0,0.0,2648.0,0.0,24825.0,999.0,Infiltration Reduction|25%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,24825.0,1166.1,1166.1,0.0,0.0,10.07,10.5,10.82,2.71,2.32,2.44,0.96,0.53,0.68,9.45,10.73,2.99,2.53,6681.0,3.57
+project_testing-All Upgrades-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.63,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,332.17,0.0,67.92,0.0,0.0,0.0,0.0,0.0,0.0,-389.38,574.67,575.1,0.0,0.0,0.0,-2853.31,0.0,289.04,0.0,2463.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,-389.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2463.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.446,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,1.25,0.0,0.337,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,-18.4,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.408,9.992,0.0,-8.408,9.992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3542.0,1200.0,4742.0,0.0,423.0,0.0,844.0,2504.0,4980.0,1254.0,0.0,0.0,11052.0,1047.0,0.0,0.0,939.0,0.0,4080.0,23232.0,3923.0,0.0,0.0,38262.0,6088.0,0.0,89.6,4.28,0.256,-0.577,0.0,0.0,0.0,0.0,2.175,1370.9,1250.5,1370.9,5.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,254.76,268.8,-341.01,182.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,182.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,418.79,144.0,-492.72,70.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.4,270.0,-437.64,183.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,183.75,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,10895.0,0.0,2179.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",3444.51,999.0,"Insulation Wall|Wood Stud, R-13",3132.79,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,16342.5,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1634.25,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,2179.0,0.0,0.0,0.0,0.0,66.0,0.0,48654.04,1558.6,1558.6,0.0,0.0,14.71,14.54,13.47,0.73,0.88,0.76,0.21,0.16,0.19,13.55,16.36,1.02,1.23,88.0,1.37
+project_testing-All Upgrades-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.025,0.922,0.0,-0.035,0.0,13.617,-4.866,-0.283,0.0,0.031,0.0,0.0,0.0,0.0,0.0,0.0,0.112,0.0,1.484,-1.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-130.42,0.0,0.0,0.0,0.0,0.0,37.28,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,19.74,0.0,9.27,0.0,0.0,0.0,2.48,0.0,0.0,-146.32,0.0,0.0,0.0,0.0,0.0,-206.37,0.0,39.95,0.0,60.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,2755.41,0.0,0.0,0.0,0.0,0.0,2901.73,0.0,0.0,0.0,0.0,2901.73,2961.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.686,0.0,0.0,0.0,0.0,0.0,1.045,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.453,0.0,0.0,0.0,0.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.914,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,-1.207,22.707,0.0,-17.527,6.387,0.0,0.0,16.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-451.0,1200.0,749.0,0.0,420.0,0.0,0.0,1154.0,4980.0,0.0,0.0,0.0,7650.0,32.0,1064.0,0.0,463.0,0.0,0.0,7788.0,0.0,0.0,0.0,8949.0,180.0,518.0,82.04,45.68,0.477,10.957,0.0,0.0,0.0,0.0,1.576,1255.8,1240.7,713.9,4.875,11.987,2403.192,0.0,3.0,0.0,0.0,0.0,154.7,195.6,-840.05,-489.76,0.0,0.0,0.0,0.0,0.0,0.0,498.87,0.0,498.87,9.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173.13,258.0,-840.05,-408.92,0.0,0.0,0.0,0.0,0.0,0.0,641.4,0.0,641.4,232.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,223.66,270.0,-403.44,90.22,0.0,0.0,0.0,0.0,0.0,0.0,356.34,0.0,356.34,446.56,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,11858.8,0.0,1682.0,2.3,3359.52,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",540.57,999.0,"Insulation Wall|Wood Stud, R-13",491.65,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,17788.21,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1261.5,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,0.0,0.0,0.0,7.0,4.67,66.0,0.0,47541.44,244.6,244.6,0.0,73.4,6.96,13.17,13.27,0.77,0.47,0.61,0.12,0.1,0.11,7.18,13.82,0.93,0.53,6709.0,1.26
+project_testing-All Upgrades-0003.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.231,0.487,0.0,1.278,0.0,110.65,-17.952,2.074,-1.747,0.844,0.0,0.0,0.0,0.0,0.0,0.0,18.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.48,18.41,37.0,24.24,0.0,0.0,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,74.23,0.71,19.1,12.22,0.0,252.6,5.15,0.0,0.0,1614.28,545.89,551.46,763.64,0.0,0.0,-1091.61,15.16,67.05,0.0,2705.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2380.78,0.0,0.0,0.0,18851.83,0.0,716.27,0.0,0.0,0.0,0.0,21948.88,37753.55,1669.47,0.0,0.0,0.0,0.0,11052.49,0.0,0.0,0.0,1468.43,14190.39,38845.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.514,0.325,0.707,0.444,0.0,0.0,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,1.607,0.013,0.379,0.215,0.0,4.405,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,-22.767,0.282,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,127.983,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,62.162,0.0,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,256.444,279.211,0.0,27.625,50.392,0.0,149.008,79.811,0.0,0.0,6096.1,3853.7,1176.0,19726.2,0.0,0.0,131268.0,0.0,40035.0,1200.0,41235.0,1058.0,248.0,0.0,462.0,30009.0,4980.0,0.0,0.0,0.0,40382.0,3624.0,0.0,1122.0,297.0,0.0,857.0,87117.0,0.0,0.0,0.0,98795.0,9403.0,0.0,95.0,32.9,0.0,120.357,0.0,12.688,0.0,8.914,1.364,4346.1,4209.5,4281.4,0.0,134.48,1.591,0.0,286.0,0.0,0.0,0.0,1314.26,246.0,-593.71,966.55,0.0,0.0,0.0,140.07,108.0,248.07,3398.06,0.0,3398.06,4612.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1844.11,144.0,-833.07,1155.04,0.0,0.0,0.0,1544.28,144.0,1688.28,2557.09,0.0,2557.09,5400.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1772.04,270.0,-800.51,1241.53,0.0,0.0,0.0,1639.09,132.0,1771.09,1742.6,0.0,1742.6,4755.22,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,55870.0,1862.3,5587.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",9554.27,999.0,"Insulation Wall|Wood Stud, R-13",8689.63,999.0,Insulation Sheathing|R-5,1564.33,999.0,Geometry Foundation Type|Unvented Crawlspace,756.63,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",431.67,999.0,"Insulation Rim Joist|R-13, Interior",,,,83805.0,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,4190.25,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,,,,HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,138.8,2082.2,0.0,0.0,91.89,39.38,66.0,0.0,133091.78,4323.2,4581.8,720.6,0.0,15.72,17.57,16.74,3.21,3.25,3.26,1.06,1.0,1.02,15.91,17.45,4.02,3.79,6520.0,4.35
+project_testing-All Upgrades-0004.osw,0,0.239,0.182,2.167,0.002,0.0,2.352,1.067,-0.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.138,0.0,1.474,3.381,3.237,1.139,15.126,-2.061,0.0,317.745,-3.364,-0.732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.145,0.0,30.107,-6.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,86.43,0.0,0.0,0.0,118.14,0.0,106.74,0.0,0.0,6406.6,78.06,0.0,22.2,0.0,0.0,0.0,0.0,0.0,0.0,6277.82,0.0,190.97,0.0,0.0,0.0,-811.71,0.0,72.38,0.0,7089.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,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,31611.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32423.03,0.0,0.0,0.0,0.0,24326.54,0.0,0.0,0.0,0.0,0.0,24326.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.211,2.317,0.0,0.0,0.0,1.94,0.0,1.553,0.0,0.0,94.774,1.261,0.0,0.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-22.792,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212.325,235.117,0.0,83.857,106.648,0.0,6.836,0.0,121.633,0.0,0.0,0.0,0.0,0.0,273034.0,147755.0,113193.0,3778.0,19376.0,1200.0,24354.0,893.0,224.0,14157.0,184.0,13665.0,4980.0,0.0,0.0,0.0,43253.0,1749.0,7400.0,1114.0,419.0,52516.0,744.0,110653.0,0.0,0.0,0.0,180441.0,4830.0,10165.0,87.98,17.6,11.022,369.131,82.71,0.0,0.0,0.0,1.582,12869.0,3553.2,12869.0,38.94,236.634,0.0,13.0,200.0,0.0,0.0,0.0,2938.02,255.6,-627.88,2565.74,0.0,0.0,0.0,6.43,118.8,125.23,0.0,0.0,0.0,4247.87,1556.9,0.0,1556.9,0.0,0.0,0.0,0.0,0.0,0.0,6255.16,144.0,-1336.78,5062.38,0.0,0.0,0.0,97.29,144.0,241.29,0.0,0.0,0.0,7128.16,1824.49,0.0,1824.49,0.0,0.0,0.0,0.0,0.0,0.0,3750.66,270.0,-801.55,3219.12,0.0,0.0,0.0,75.2,132.0,207.2,0.0,0.0,0.0,5250.81,1824.49,0.0,1824.49,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,45429.43,1076.0,3228.0,0.0,30615.55,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",4927.86,999.0,"Insulation Wall|Wood Stud, R-13",4481.9,999.0,Insulation Sheathing|R-5,903.84,999.0,Geometry Foundation Type|Unvented Crawlspace,390.18,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",327.79,999.0,"Insulation Rim Joist|R-13, Interior",,,,68144.15,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,2421.0,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,5659.65,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,105.4,1203.0,273.03,147.76,113.19,0.0,66.0,0.0,141971.92,2229.8,2471.9,371.6,668.9,12.6,11.33,8.72,1.73,8.85,2.53,0.2,3.26,0.7,13.18,13.18,3.02,12.45,318.0,12.87
+project_testing-All Upgrades-0005.osw,0,0.035,-0.062,0.0,0.051,0.0,-5.728,19.608,-0.018,0.906,-0.516,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,0.0,0.037,0.331,0.0,0.054,0.0,12.91,-12.578,-0.014,-1.396,0.838,0.0,0.0,0.0,0.0,0.0,0.0,1.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-80.42,0.0,0.0,3.69,8.06,40.84,258.63,19.65,0.0,0.0,0.0,0.23,0.0,0.0,24.99,554.89,45.48,4.05,6.13,0.0,79.82,3.96,0.0,0.0,1452.75,0.0,0.0,458.7,0.0,150.51,-206.37,0.0,79.91,0.0,1659.12,0.0,0.0,0.0,0.0,0.0,0.0,1.38,0.0,0.0,0.0,0.0,0.0,1.38,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,2642.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2849.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.305,0.0,0.0,0.149,0.283,1.493,8.033,0.653,0.0,0.0,0.0,0.005,0.0,0.0,0.546,16.011,1.495,0.372,0.132,0.0,2.302,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-23.914,0.0,2.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.394,64.308,0.0,32.317,56.231,0.007,8.07,0.0,0.0,0.0,569.6,1367.2,3972.1,49763.8,43127.0,8133.0,15599.0,0.0,-625.0,1200.0,575.0,0.0,132.0,0.0,0.0,1607.0,4980.0,0.0,0.0,0.0,6995.0,275.0,0.0,0.0,146.0,0.0,0.0,10856.0,0.0,0.0,0.0,12563.0,1561.0,0.0,82.04,45.68,14.513,1.874,0.005,26.463,0.0,11.403,1.52,4884.5,4368.0,4759.5,10.667,15.35,1.437,0.0,5.0,0.0,0.0,0.0,1367.77,195.6,-840.95,722.42,0.19,0.0,0.19,7.34,140.4,147.74,0.0,0.0,0.0,870.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2034.28,258.0,-840.95,1451.33,0.14,0.0,0.14,9.52,97.2,106.72,0.0,0.0,0.0,1558.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1977.49,270.0,-840.95,1406.54,0.11,0.0,0.11,88.77,132.0,220.77,0.0,0.0,0.0,1627.42,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,16550.0,0.0,2648.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",2577.08,999.0,"Insulation Wall|Wood Stud, R-13",2343.86,999.0,Insulation Sheathing|R-5,,,,,,,,,"Insulation Rim Joist|R-13, Interior",,,,24825.0,999.0,Infiltration Reduction|25%,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,1986.0,25.0,Lighting|100% LED,Lighting Interior Use|100% Usage,Lighting Other Use|100% Usage,Holiday Lighting|No Exterior Use,779.95,30.0,"HVAC Heating Efficiency|ASHP, SEER 22, 10 HSPF",HVAC Cooling Efficiency|Ducted Heat Pump,Heat Pump Backup|Use Existing System,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF","Solar Hot Water|40 sqft, South, Roof Pitch",15000.0,30.0,Has PV|Yes,PV System Size|5.0 kWDC,PV Orientation|South,0.0,0.0,43.13,8.13,15.6,0.0,66.0,0.0,56611.89,1166.1,1166.1,0.0,0.0,8.78,9.92,9.56,3.65,3.88,3.63,1.13,0.56,0.72,9.0,10.18,3.99,4.17,6681.0,4.88
project_testing-Ceilings-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-Ceilings-0002.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-Ceilings-0003.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
@@ -102,60 +102,60 @@ project_testing-Ceilings-0005.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-Foundation Type-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-Foundation Type-0002.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-Foundation Type-0003.osw,0,0.884,0.283,0.0,1.503,0.0,7.84,18.423,2.526,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.642,0.0,0.0,0.0,2.219,0.507,0.0,1.017,0.0,148.279,-22.115,3.195,0.0,0.883,0.0,0.0,0.0,0.0,0.0,0.0,24.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1991.66,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4416.52,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4416.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,2380.78,0.0,0.0,0.0,25767.58,0.0,716.27,0.0,0.0,0.0,0.0,28864.63,52861.0,1669.47,0.0,0.0,0.0,0.0,15106.99,1334.97,0.0,0.0,1468.43,19579.86,52861.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.707,0.444,0.0,25.883,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,174.933,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,84.966,7.508,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.426,374.426,0.0,68.345,68.345,0.0,195.958,110.123,0.0,0.0,6085.4,3842.9,1090.2,18286.6,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,462.0,40012.0,3780.0,0.0,0.0,0.0,52016.0,6456.0,0.0,1122.0,297.0,0.0,857.0,116156.0,0.0,0.0,0.0,130944.0,12512.0,0.0,95.0,32.9,43.683,164.841,0.0,12.979,0.0,8.273,0.0,12191.1,12191.1,3802.0,51.306,142.035,0.0,92.0,507.0,0.0,0.0,0.0,1782.66,96.0,0.0,1878.66,0.0,0.0,0.0,184.2,108.0,292.2,4688.64,0.0,4688.64,6859.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2501.34,144.0,0.0,2645.34,0.0,0.0,0.0,2030.85,144.0,2174.85,3528.27,0.0,3528.27,8348.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2403.58,120.0,0.0,2523.58,0.0,0.0,0.0,2155.54,132.0,2287.54,2404.43,0.0,2404.43,7215.55,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,1564.33,999.0,Geometry Foundation Type|Unvented Crawlspace,756.63,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,2320.96,4323.2,4581.8,720.6,0.0,15.99,16.81,16.39,7.18,2.75,3.23,0.98,0.89,0.9,16.0,16.82,11.01,3.22,5128.0,12.19
-project_testing-Foundation Type-0004.osw,0,0.13,0.186,1.934,-0.446,0.0,2.64,1.164,-1.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.908,0.0,0.866,11.809,3.047,1.111,-0.0,2.701,0.0,418.297,-3.88,-1.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.238,0.0,78.525,-19.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.82,240.35,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.11,0.0,0.0,0.0,0.0,0.0,0.0,-565.68,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,634.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,1006.96,0.0,0.0,1006.96,148324.39,0.0,0.0,0.0,0.0,0.0,29388.97,1816.61,0.0,0.0,0.0,31205.58,149524.47,0.0,0.0,0.0,0.0,0.0,116677.54,0.0,0.0,0.0,0.0,116677.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,2.035,6.114,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.292,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,583.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,745.219,779.01,0.0,-20.512,13.28,0.0,6.836,175.507,583.388,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,5490.0,25835.0,1200.0,32525.0,893.0,224.0,18260.0,184.0,18220.0,3780.0,0.0,0.0,0.0,62779.0,2094.0,19123.0,1114.0,419.0,0.0,744.0,147537.0,0.0,0.0,0.0,184365.0,5109.0,29442.0,87.98,17.6,17.231,495.776,0.0,0.0,0.0,0.0,3.334,8862.6,8862.6,417.6,53.753,222.276,0.0,14.0,382.0,0.0,0.0,0.0,365.84,105.6,-546.18,-74.74,0.0,0.0,0.0,6.43,118.8,125.23,7472.46,0.0,7472.46,14990.31,7467.36,0.0,7467.36,0.0,0.0,0.0,0.0,0.0,0.0,778.89,144.0,-959.23,-36.34,0.0,0.0,0.0,97.29,144.0,241.29,6517.91,0.0,6517.91,15473.68,8750.82,0.0,8750.82,0.0,0.0,0.0,0.0,0.0,0.0,467.03,390.0,-677.43,179.6,0.0,0.0,0.0,75.2,132.0,207.2,3832.03,0.0,3832.03,12969.65,8750.82,0.0,8750.82,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,903.84,999.0,Geometry Foundation Type|Unvented Crawlspace,390.18,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,1294.02,2229.8,2471.9,371.6,668.9,14.2,15.7,14.94,3.89,0.39,0.74,0.13,0.12,0.1,13.36,15.55,7.43,0.43,4909.0,8.86
+project_testing-Foundation Type-0004.osw,0,0.13,0.186,1.934,-0.446,0.0,2.64,1.164,-1.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.908,0.0,0.866,11.809,3.047,1.111,-0.0,2.701,0.0,418.297,-3.88,-1.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.238,0.0,78.525,-19.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.82,240.35,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.11,0.0,0.0,0.0,0.0,0.0,0.0,-565.68,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,634.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,1006.96,0.0,0.0,1006.96,148324.39,0.0,0.0,0.0,0.0,0.0,29388.97,1816.61,0.0,0.0,0.0,31205.58,149524.47,0.0,0.0,0.0,0.0,0.0,116677.54,0.0,0.0,0.0,0.0,116677.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,2.035,6.114,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.292,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,583.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,745.219,779.01,0.0,-20.512,13.28,0.0,6.836,175.507,583.388,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,5490.0,25835.0,1200.0,32525.0,893.0,224.0,18260.0,184.0,18220.0,3780.0,0.0,0.0,0.0,62779.0,2094.0,19123.0,1114.0,419.0,0.0,744.0,147537.0,0.0,0.0,0.0,184365.0,5109.0,29442.0,87.98,17.6,17.231,495.776,0.0,0.0,0.0,0.0,3.334,8862.6,8862.6,417.6,53.753,222.276,0.0,14.0,382.0,0.0,0.0,0.0,365.84,375.6,-576.24,165.2,0.0,0.0,0.0,6.43,118.8,125.23,7472.46,0.0,7472.46,15230.25,7467.36,0.0,7467.36,0.0,0.0,0.0,0.0,0.0,0.0,778.89,144.0,-959.23,-36.34,0.0,0.0,0.0,97.29,144.0,241.29,6517.91,0.0,6517.91,15473.68,8750.82,0.0,8750.82,0.0,0.0,0.0,0.0,0.0,0.0,467.03,390.0,-677.43,179.6,0.0,0.0,0.0,75.2,132.0,207.2,3832.03,0.0,3832.03,12969.65,8750.82,0.0,8750.82,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,903.84,999.0,Geometry Foundation Type|Unvented Crawlspace,390.18,999.0,"Insulation Foundation Wall|Wall R-10, Exterior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,1294.02,2229.8,2471.9,371.6,668.9,14.2,15.7,14.94,3.89,0.39,0.74,0.13,0.12,0.1,13.36,15.55,7.43,0.43,4909.0,8.86
project_testing-Foundation Type-0005.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
project_testing-HPWH-0001.osw,0,0.0,0.026,0.0,-1.014,0.0,-1.598,2.085,-0.097,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.0,0.394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.28,158.52,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,335.64,0.0,67.07,0.0,0.0,0.0,0.0,0.0,0.0,2465.68,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2465.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,2465.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2465.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.927,0.725,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.029,10.029,0.0,10.029,10.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.305,-1.159,0.0,0.0,0.0,0.0,2.221,2246.9,2246.9,1186.2,10.604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,255.72,118.8,0.0,374.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,420.35,144.0,0.0,564.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,564.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,352.71,120.0,0.0,472.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.71,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,66.0,0.0,6600.0,1558.6,1558.6,0.0,0.0,14.36,14.03,12.2,0.96,0.86,0.81,0.18,0.13,0.15,15.55,15.91,1.53,1.18,4910.0,2.25
-project_testing-HPWH-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.038,0.903,0.0,-0.053,0.0,18.844,-6.102,-0.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.264,0.0,1.531,-1.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-135.94,0.0,0.0,0.0,0.0,0.0,51.82,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,18.24,0.0,9.14,0.0,0.0,0.0,0.0,0.0,0.0,-387.06,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,66.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,3695.75,0.0,0.0,0.0,0.0,0.0,4082.81,0.0,0.0,0.0,0.0,4082.81,4149.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.717,0.0,0.0,0.0,0.0,0.0,1.522,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-22.765,29.846,0.0,-45.728,6.883,0.0,0.0,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.493,15.231,0.0,0.0,0.0,0.0,1.579,1533.8,1533.8,1109.8,4.775,12.151,4382.054,0.0,15.0,0.0,0.0,0.0,166.71,105.6,-568.76,-296.45,0.0,0.0,0.0,0.0,0.0,0.0,701.92,0.0,701.92,405.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,484.59,144.0,-886.64,-258.05,0.0,0.0,0.0,0.0,0.0,0.0,675.69,0.0,675.69,417.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,241.03,450.0,-710.09,-19.05,0.0,0.0,0.0,0.0,0.0,0.0,501.37,0.0,501.37,482.32,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,66.0,0.0,6600.0,244.6,244.6,0.0,73.4,10.07,12.0,12.48,0.76,0.48,0.65,0.12,0.1,0.11,14.82,12.82,0.94,0.53,3776.0,1.53
+project_testing-HPWH-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.038,0.903,0.0,-0.053,0.0,18.844,-6.102,-0.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.264,0.0,1.531,-1.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-135.94,0.0,0.0,0.0,0.0,0.0,51.82,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,18.24,0.0,9.14,0.0,0.0,0.0,0.0,0.0,0.0,-387.06,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,66.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,3695.75,0.0,0.0,0.0,0.0,0.0,4082.81,0.0,0.0,0.0,0.0,4082.81,4149.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.717,0.0,0.0,0.0,0.0,0.0,1.522,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-22.765,29.846,0.0,-45.728,6.883,0.0,0.0,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.493,15.231,0.0,0.0,0.0,0.0,1.579,1533.8,1533.8,1109.8,4.775,12.151,4382.054,0.0,15.0,0.0,0.0,0.0,166.71,195.6,-1849.22,-1486.9,0.0,0.0,0.0,0.0,0.0,0.0,701.92,0.0,701.92,-784.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.02,438.0,-1849.22,-1222.2,0.0,0.0,0.0,0.0,0.0,0.0,902.47,0.0,902.47,-319.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,241.03,450.0,-710.09,-19.05,0.0,0.0,0.0,0.0,0.0,0.0,501.37,0.0,501.37,482.32,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,66.0,0.0,6600.0,244.6,244.6,0.0,73.4,10.07,12.0,12.48,0.76,0.48,0.65,0.12,0.1,0.11,14.82,12.82,0.94,0.53,3776.0,1.53
project_testing-HPWH-0003.osw,0,0.891,0.285,0.0,0.803,0.0,7.779,18.296,2.518,0.0,0.043,0.0,0.0,0.0,0.0,0.0,0.0,7.756,0.0,0.0,0.0,2.206,0.504,0.0,2.204,0.0,153.591,-20.644,3.18,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,24.242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1968.13,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,80.06,0.71,19.15,0.0,0.0,0.0,5.15,0.0,0.0,4472.5,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4472.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,2380.78,0.0,0.0,0.0,26977.86,0.0,716.27,0.0,0.0,0.0,0.0,30074.91,53501.93,1669.47,0.0,0.0,0.0,0.0,15816.62,0.0,0.0,0.0,1468.43,18954.52,53501.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.325,0.707,0.444,0.0,25.461,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,1.69,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,183.149,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.957,0.0,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,380.392,380.392,0.0,69.612,69.612,0.0,204.175,106.606,0.0,0.0,6096.2,3853.8,1177.7,19755.3,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,42.945,172.68,0.0,12.681,0.0,8.866,1.524,12194.5,12194.5,3899.2,52.549,139.389,0.0,90.0,551.0,0.0,0.0,0.0,1815.71,96.0,0.0,1911.71,0.0,0.0,0.0,191.92,108.0,299.92,4538.9,0.0,4538.9,6750.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2547.72,144.0,0.0,2691.72,0.0,0.0,0.0,2116.01,144.0,2260.01,3415.59,0.0,3415.59,8367.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2448.15,120.0,0.0,2568.15,0.0,0.0,0.0,2245.92,132.0,2377.92,2327.64,0.0,2327.64,7273.71,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,66.0,0.0,6600.0,4323.2,4581.8,720.6,0.0,15.98,16.95,16.42,7.14,2.88,3.31,0.99,0.91,0.92,16.0,16.91,11.03,3.43,5128.0,12.19
-project_testing-HPWH-0004.osw,0,0.129,0.186,3.565,-0.49,0.0,2.466,0.801,-1.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.903,0.0,0.849,11.841,3.038,1.109,-0.018,4.349,0.0,425.085,-2.452,-1.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.197,0.0,78.351,-19.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.51,250.61,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,78.72,0.0,21.98,0.0,0.0,0.0,0.0,0.0,0.0,-462.14,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,737.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,1006.96,0.0,0.0,1006.96,149455.58,0.0,0.0,0.0,0.0,0.0,29961.21,0.0,0.0,0.0,0.0,29961.21,150655.66,0.0,0.0,0.0,0.0,0.0,118949.56,0.0,0.0,0.0,0.0,118949.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,2.129,6.377,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,1.269,0.0,0.428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,594.748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.419,785.21,0.0,-18.676,15.115,0.0,6.836,168.511,594.748,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.214,505.42,0.0,0.0,0.0,0.0,1.586,9401.8,9401.8,915.1,59.498,212.062,0.0,15.0,399.0,0.0,0.0,0.0,416.41,105.6,-580.61,-58.6,0.0,0.0,0.0,6.43,118.8,125.23,7174.58,0.0,7174.58,14853.98,7612.77,0.0,7612.77,0.0,0.0,0.0,0.0,0.0,0.0,886.55,144.0,-1050.75,-20.2,0.0,0.0,0.0,97.29,144.0,241.29,6258.09,0.0,6258.09,15400.4,8921.22,0.0,8921.22,0.0,0.0,0.0,0.0,0.0,0.0,531.59,390.0,-723.15,198.43,0.0,0.0,0.0,75.2,132.0,207.2,3679.27,0.0,3679.27,13006.12,8921.22,0.0,8921.22,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,66.0,0.0,6600.0,2229.8,2471.9,371.6,668.9,14.29,12.16,12.44,4.07,0.68,0.89,0.15,0.14,0.12,13.73,16.0,7.94,0.89,4909.0,9.4
-project_testing-HPWH-0005.osw,0,0.014,-0.034,0.0,0.023,0.0,-5.37,12.147,-0.142,2.351,-0.419,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,0.0,0.021,0.348,0.0,0.032,0.0,17.555,-12.783,-0.172,-4.659,0.824,0.0,0.0,0.0,0.0,0.0,0.0,1.613,0.0,0.0,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.79,0.0,0.0,3.69,32.62,59.98,222.3,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,558.67,45.48,4.05,29.12,0.0,263.46,3.96,0.0,0.0,1036.79,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,1573.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,494.51,0.0,0.0,0.0,0.0,494.51,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,3228.8,0.0,0.0,0.0,0.0,0.0,508.85,0.0,0.0,0.0,0.0,508.85,3765.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.772,0.0,0.0,0.149,1.133,2.017,6.654,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.121,1.495,0.372,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.524,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.133,74.309,0.0,-1.323,60.853,2.524,8.07,2.862,0.0,0.0,569.6,1367.3,3975.4,49806.0,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,10.383,3.131,0.0,26.463,0.0,11.404,1.528,5126.3,4646.0,5058.4,9.508,16.86,3.297,138.0,4.0,0.0,0.0,0.0,1480.02,105.6,-1491.65,93.97,69.01,0.0,69.01,7.34,140.4,147.74,87.48,0.0,87.48,398.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4301.98,144.0,-4313.61,132.37,88.29,0.0,88.29,103.19,144.0,247.19,84.21,0.0,84.21,552.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2139.78,510.0,-2153.35,496.43,38.14,0.0,38.14,88.77,132.0,220.77,62.49,0.0,62.49,817.83,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,66.0,0.0,6600.0,1166.1,1166.1,0.0,0.0,8.78,10.33,9.97,3.77,3.85,3.78,1.09,0.55,0.7,8.82,10.27,4.14,4.1,6681.0,5.13
+project_testing-HPWH-0004.osw,0,0.129,0.186,3.565,-0.49,0.0,2.466,0.801,-1.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.903,0.0,0.849,11.841,3.038,1.109,-0.018,4.349,0.0,425.085,-2.452,-1.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.197,0.0,78.351,-19.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.51,250.61,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,78.72,0.0,21.98,0.0,0.0,0.0,0.0,0.0,0.0,-462.14,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,737.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,1006.96,0.0,0.0,1006.96,149455.58,0.0,0.0,0.0,0.0,0.0,29961.21,0.0,0.0,0.0,0.0,29961.21,150655.66,0.0,0.0,0.0,0.0,0.0,118949.56,0.0,0.0,0.0,0.0,118949.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,2.129,6.377,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,1.269,0.0,0.428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,594.748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.419,785.21,0.0,-18.676,15.115,0.0,6.836,168.511,594.748,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.214,505.42,0.0,0.0,0.0,0.0,1.586,9401.8,9401.8,915.1,59.498,212.062,0.0,15.0,399.0,0.0,0.0,0.0,416.41,375.6,-607.98,184.03,0.0,0.0,0.0,6.43,118.8,125.23,7174.58,0.0,7174.58,15096.61,7612.77,0.0,7612.77,0.0,0.0,0.0,0.0,0.0,0.0,886.55,144.0,-1050.75,-20.2,0.0,0.0,0.0,97.29,144.0,241.29,6258.09,0.0,6258.09,15400.4,8921.22,0.0,8921.22,0.0,0.0,0.0,0.0,0.0,0.0,531.59,390.0,-723.15,198.43,0.0,0.0,0.0,75.2,132.0,207.2,3679.27,0.0,3679.27,13006.12,8921.22,0.0,8921.22,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,66.0,0.0,6600.0,2229.8,2471.9,371.6,668.9,14.29,12.16,12.44,4.07,0.68,0.89,0.15,0.14,0.12,13.73,16.0,7.94,0.89,4909.0,9.4
+project_testing-HPWH-0005.osw,0,0.014,-0.034,0.0,0.023,0.0,-5.37,12.147,-0.142,2.351,-0.419,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,0.0,0.021,0.348,0.0,0.032,0.0,17.555,-12.783,-0.172,-4.659,0.824,0.0,0.0,0.0,0.0,0.0,0.0,1.613,0.0,0.0,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.79,0.0,0.0,3.69,32.62,59.98,222.3,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,558.67,45.48,4.05,29.12,0.0,263.46,3.96,0.0,0.0,1036.79,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,1573.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,494.51,0.0,0.0,0.0,0.0,494.51,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,3228.8,0.0,0.0,0.0,0.0,0.0,508.85,0.0,0.0,0.0,0.0,508.85,3765.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.772,0.0,0.0,0.149,1.133,2.017,6.654,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.121,1.495,0.372,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.524,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.133,74.309,0.0,-1.323,60.853,2.524,8.07,2.862,0.0,0.0,569.6,1367.3,3975.4,49806.0,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,10.383,3.131,0.0,26.463,0.0,11.404,1.528,5126.3,4646.0,5058.4,9.508,16.86,3.297,138.0,4.0,0.0,0.0,0.0,1480.02,195.6,-2186.31,-510.69,69.01,0.0,69.01,7.34,140.4,147.74,87.48,0.0,87.48,-206.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2210.1,498.0,-2186.31,521.79,49.03,0.0,49.03,9.52,97.2,106.72,112.48,0.0,112.48,790.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2139.78,510.0,-2153.35,496.43,38.14,0.0,38.14,88.77,132.0,220.77,62.49,0.0,62.49,817.83,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,6600.0,12.0,"Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF",,,"Solar Hot Water|40 sqft, South, Roof Pitch",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,66.0,0.0,6600.0,1166.1,1166.1,0.0,0.0,8.78,10.33,9.97,3.77,3.85,3.78,1.09,0.55,0.7,8.82,10.27,4.14,4.1,6681.0,5.13
project_testing-Lighting-0001.osw,0,0.0,0.017,0.0,-1.04,0.0,-2.071,2.89,-0.087,0.0,0.0,0.0,0.0,2.191,0.0,0.0,0.0,0.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,258.23,204.89,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.71,0.0,0.0,0.0,0.0,0.0,0.0,2188.01,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2188.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,896.67,0.0,0.0,0.0,0.0,0.0,896.67,3084.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3084.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,1.099,0.911,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.067,15.067,0.0,8.98,8.98,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.572,-1.598,0.0,0.0,0.0,0.0,4.692,2366.4,2366.4,944.6,11.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.96,118.8,0.0,347.76,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,457.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,376.38,144.0,0.0,520.38,0.0,0.0,0.0,54.13,144.0,198.13,0.0,0.0,0.0,718.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.81,120.0,0.0,435.81,0.0,0.0,0.0,66.96,132.0,198.96,0.0,0.0,0.0,634.77,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,1634.25,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,1634.25,1558.6,1558.6,0.0,0.0,14.44,14.62,11.38,0.98,0.57,0.71,0.16,0.12,0.13,15.55,15.55,1.64,1.04,4911.0,2.37
-project_testing-Lighting-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,105.6,-558.35,-302.34,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,403.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.2,144.0,-845.15,-263.94,0.0,0.0,0.0,0.0,0.0,0.0,679.25,0.0,679.25,415.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,1261.5,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,1261.5,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
+project_testing-Lighting-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,195.6,-1849.23,-1503.21,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,-797.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.88,438.0,-1849.23,-1241.35,0.0,0.0,0.0,0.0,0.0,0.0,907.22,0.0,907.22,-334.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,1261.5,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,1261.5,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
project_testing-Lighting-0003.osw,0,0.86,0.283,0.0,0.775,0.0,7.466,18.439,2.365,2.008,0.039,0.0,0.0,0.0,0.0,0.0,0.0,7.587,0.0,0.0,0.0,2.19,0.507,0.0,2.209,0.0,153.839,-22.097,2.99,-1.896,0.881,0.0,0.0,0.0,0.0,0.0,0.0,24.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,2017.48,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,12.22,0.0,252.6,5.15,0.0,0.0,4707.17,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4707.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,2380.78,0.0,0.0,0.0,26480.44,0.0,716.27,0.0,0.0,0.0,0.0,29577.49,54282.68,1669.47,0.0,0.0,0.0,0.0,15525.03,1335.1,0.0,0.0,1468.43,19998.03,54282.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.325,0.707,0.444,0.0,26.194,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.215,0.0,4.405,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,179.772,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,87.317,7.509,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.549,386.549,0.0,73.276,73.276,0.0,200.798,112.475,0.0,0.0,6085.4,3842.9,1090.2,18286.6,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,44.391,169.456,0.0,12.979,0.0,8.273,0.0,12367.8,12367.8,4117.0,52.677,139.333,0.0,91.0,543.0,0.0,0.0,0.0,1911.29,96.0,0.0,2007.29,0.0,0.0,0.0,188.75,108.0,296.75,4788.78,0.0,4788.78,7092.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2681.83,144.0,0.0,2825.83,0.0,0.0,0.0,2081.01,144.0,2225.01,3603.63,0.0,3603.63,8654.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2577.02,120.0,0.0,2697.02,0.0,0.0,0.0,2208.77,132.0,2340.77,2455.78,0.0,2455.78,7493.57,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,5587.0,0.0,4190.25,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,4190.25,4323.2,4581.8,720.6,0.0,16.02,17.46,16.68,7.36,3.07,3.51,1.03,0.96,0.97,16.0,17.45,11.23,3.56,5128.0,12.37
-project_testing-Lighting-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-546.62,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,150781.86,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.201,791.992,0.0,-20.03,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,105.6,-555.2,-70.51,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15236.8,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-983.22,-32.11,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15726.57,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,390.0,-689.41,184.54,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13180.98,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,2421.0,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,2421.0,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
-project_testing-Lighting-0005.osw,0,-0.023,-0.031,0.0,-0.03,0.0,-5.523,14.321,-0.278,0.794,-0.407,0.0,0.0,0.0,0.0,0.0,0.0,0.679,0.0,0.0,0.0,-0.029,0.37,0.0,-0.037,0.0,18.999,-21.044,-0.346,-1.31,0.887,0.0,0.0,0.0,0.0,0.0,0.0,1.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-390.03,0.0,0.0,3.69,37.82,68.74,226.83,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,6.13,0.0,79.82,3.96,0.0,0.0,219.51,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,756.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,190.9,0.0,0.0,0.0,0.0,190.9,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16536.09,0.0,0.0,0.0,0.0,0.0,196.67,14740.37,0.0,0.0,0.0,14937.04,17072.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.0,0.0,0.149,1.372,2.429,6.747,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.384,0.132,0.0,2.302,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.974,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.106,82.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.606,132.782,0.0,-22.448,39.728,0.974,8.07,84.01,0.0,0.0,569.4,1366.9,3981.4,49881.2,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,11.16,-0.395,0.0,26.463,0.0,11.785,1.924,3242.3,3199.4,2840.8,8.963,13.561,6.787,121.0,1.0,0.0,0.0,0.0,966.15,105.6,-1163.51,-91.77,26.64,0.0,26.64,7.34,140.4,147.74,2568.0,0.0,2568.0,2650.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2808.31,144.0,-3005.67,-53.37,34.08,0.0,34.08,103.19,144.0,247.19,2472.01,0.0,2472.01,2699.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1396.84,510.0,-1627.1,279.74,14.72,0.0,14.72,88.77,132.0,220.77,1834.28,0.0,1834.28,2349.51,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,1986.0,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,1986.0,1166.1,1166.1,0.0,0.0,9.93,10.58,9.87,2.61,2.15,2.27,1.0,0.47,0.62,9.73,10.82,2.92,2.34,6225.0,3.24
+project_testing-Lighting-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-546.62,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,150781.86,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.201,791.992,0.0,-20.03,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,375.6,-584.56,170.14,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15477.45,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-983.22,-32.11,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15726.57,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,390.0,-689.41,184.54,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13180.98,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,2421.0,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,2421.0,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
+project_testing-Lighting-0005.osw,0,-0.023,-0.031,0.0,-0.03,0.0,-5.523,14.321,-0.278,0.794,-0.407,0.0,0.0,0.0,0.0,0.0,0.0,0.679,0.0,0.0,0.0,-0.029,0.37,0.0,-0.037,0.0,18.999,-21.044,-0.346,-1.31,0.887,0.0,0.0,0.0,0.0,0.0,0.0,1.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-390.03,0.0,0.0,3.69,37.82,68.74,226.83,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,6.13,0.0,79.82,3.96,0.0,0.0,219.51,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,756.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,190.9,0.0,0.0,0.0,0.0,190.9,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16536.09,0.0,0.0,0.0,0.0,0.0,196.67,14740.37,0.0,0.0,0.0,14937.04,17072.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.0,0.0,0.149,1.372,2.429,6.747,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.384,0.132,0.0,2.302,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.974,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.106,82.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.606,132.782,0.0,-22.448,39.728,0.974,8.07,84.01,0.0,0.0,569.4,1366.9,3981.4,49881.2,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,11.16,-0.395,0.0,26.463,0.0,11.785,1.924,3242.3,3199.4,2840.8,8.963,13.561,6.787,121.0,1.0,0.0,0.0,0.0,966.15,195.6,-2186.31,-1024.57,26.64,0.0,26.64,7.34,140.4,147.74,2568.0,0.0,2568.0,1717.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1405.24,498.0,-2186.31,-283.07,18.93,0.0,18.93,9.52,97.2,106.72,3301.71,0.0,3301.71,3144.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1396.84,510.0,-1627.1,279.74,14.72,0.0,14.72,88.77,132.0,220.77,1834.28,0.0,1834.28,2349.51,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,1986.0,25.0,Lighting|100% LED,,,Lighting Interior Use|100% Usage,,,Lighting Other Use|100% Usage,,,Holiday Lighting|No Exterior Use,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,1986.0,1166.1,1166.1,0.0,0.0,9.93,10.58,9.87,2.61,2.15,2.27,1.0,0.47,0.62,9.73,10.82,2.92,2.34,6225.0,3.24
project_testing-MSHP w/o Ducts-0001.osw,0,0.0,0.068,0.0,-0.435,0.0,-0.418,1.34,-0.311,0.0,0.0,0.0,0.0,1.506,0.0,0.0,0.0,0.855,0.0,0.0,0.0,0.0,2.523,0.0,12.613,0.0,71.992,-4.169,-0.317,0.0,0.0,0.0,0.0,9.852,0.0,0.0,0.0,26.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,1.91,116.74,43.77,0.0,0.0,532.4,0.0,119.46,47.83,9969.31,5251.71,0.0,0.0,41.22,0.0,0.0,0.0,0.0,0.0,0.0,17274.11,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17274.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,0.0,0.0,0.0,0.0,605.62,0.0,0.0,0.0,0.0,0.0,605.62,17879.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17879.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.008,0.491,0.167,0.0,0.0,2.189,0.0,0.456,0.163,33.874,19.713,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.947,65.947,0.0,61.835,61.835,0.0,4.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23045.0,49485.0,23045.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.669,119.591,34.037,0.0,0.0,0.0,3.17,16523.7,1490.2,16523.7,12.125,63.932,0.0,0.0,58.0,0.0,0.0,0.0,1576.62,118.8,0.0,1695.42,0.0,0.0,0.0,3.74,104.4,108.14,0.0,0.0,0.0,1803.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2591.71,144.0,0.0,2735.71,0.0,0.0,0.0,36.56,144.0,180.56,0.0,0.0,0.0,2916.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2174.65,120.0,0.0,2294.65,0.0,0.0,0.0,45.23,132.0,177.23,0.0,0.0,0.0,2471.88,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,1152.25,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,23.05,49.49,23.05,0.0,50.0,0.0,1152.25,1558.6,1558.6,0.0,0.0,14.7,9.68,9.97,0.82,4.96,0.84,0.15,2.47,0.28,11.91,11.0,1.13,15.37,808.0,16.52
-project_testing-MSHP w/o Ducts-0002.osw,0,-0.039,0.256,0.0,-0.055,0.0,-1.873,1.572,-0.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.066,0.0,-0.101,0.442,-0.043,0.888,0.0,-0.059,0.0,18.982,-6.671,-0.366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,1.545,-1.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-245.71,0.0,0.0,0.0,0.09,4.61,60.16,0.0,0.0,81.75,0.0,2.8,0.0,0.0,153.66,0.0,0.0,7.14,0.0,0.0,0.0,0.0,0.0,0.0,-347.57,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,106.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,-318.64,0.0,0.0,0.0,0.0,28.92,0.0,0.0,0.0,0.0,0.0,28.92,135.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,1.109,0.0,0.0,0.0,0.004,0.208,1.823,0.0,0.0,2.431,0.0,0.053,0.0,0.0,2.891,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-42.372,10.239,0.0,-42.534,10.076,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,9646.0,7001.0,9828.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.865,14.4,0.111,0.0,0.0,0.0,0.0,1499.9,1499.9,1478.8,8.034,14.291,1462.467,0.0,11.0,0.0,0.0,0.0,244.47,105.6,-618.44,-268.37,0.0,0.0,0.0,0.0,0.0,0.0,4.97,0.0,4.97,-263.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,710.62,144.0,-1084.58,-229.97,0.0,0.0,0.0,0.0,0.0,0.0,4.79,0.0,4.79,-225.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,353.46,450.0,-789.75,13.7,0.0,0.0,0.0,0.0,0.0,0.0,3.55,0.0,3.55,17.25,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,491.4,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,9.65,7.0,9.83,0.0,0.0,0.0,491.4,244.6,244.6,0.0,73.4,6.96,10.54,10.1,0.87,0.92,0.75,0.13,0.22,0.15,6.45,10.91,1.07,1.06,3776.0,1.5
+project_testing-MSHP w/o Ducts-0002.osw,0,-0.039,0.256,0.0,-0.055,0.0,-1.873,1.572,-0.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.066,0.0,-0.101,0.442,-0.043,0.888,0.0,-0.059,0.0,18.982,-6.671,-0.366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,1.545,-1.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-245.71,0.0,0.0,0.0,0.09,4.61,60.16,0.0,0.0,81.75,0.0,2.8,0.0,0.0,153.66,0.0,0.0,7.14,0.0,0.0,0.0,0.0,0.0,0.0,-347.57,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,106.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,-318.64,0.0,0.0,0.0,0.0,28.92,0.0,0.0,0.0,0.0,0.0,28.92,135.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,1.109,0.0,0.0,0.0,0.004,0.208,1.823,0.0,0.0,2.431,0.0,0.053,0.0,0.0,2.891,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-42.372,10.239,0.0,-42.534,10.076,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,9646.0,7001.0,9828.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.865,14.4,0.111,0.0,0.0,0.0,0.0,1499.9,1499.9,1478.8,8.034,14.291,1462.467,0.0,11.0,0.0,0.0,0.0,244.47,195.6,-1849.33,-1409.26,0.0,0.0,0.0,0.0,0.0,0.0,4.97,0.0,4.97,-1404.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,288.0,438.0,-1849.33,-1123.33,0.0,0.0,0.0,0.0,0.0,0.0,6.39,0.0,6.39,-1116.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,353.46,450.0,-789.75,13.7,0.0,0.0,0.0,0.0,0.0,0.0,3.55,0.0,3.55,17.25,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,491.4,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,9.65,7.0,9.83,0.0,0.0,0.0,491.4,244.6,244.6,0.0,73.4,6.96,10.54,10.1,0.87,0.92,0.75,0.13,0.22,0.15,6.45,10.91,1.07,1.06,3776.0,1.5
project_testing-MSHP w/o Ducts-0003.osw,0,1.11,0.357,0.0,0.998,0.0,9.645,22.861,3.134,0.0,0.052,0.0,0.0,0.0,0.0,0.0,0.0,9.697,0.0,0.0,0.0,2.231,0.512,0.0,2.247,0.0,157.835,-22.282,3.166,0.0,0.882,0.0,0.0,0.0,0.0,0.0,0.0,24.585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,17.38,981.62,0.0,102.68,279.22,61.61,0.0,38.55,0.0,0.0,1327.52,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4789.93,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4789.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,2380.78,0.0,0.0,3792.51,0.0,0.0,716.27,0.0,0.0,0.0,0.0,6889.56,16152.09,1669.47,0.0,0.0,0.0,0.0,0.0,1334.7,0.0,0.0,1468.43,4472.6,16152.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.325,0.707,0.444,0.222,12.699,0.0,1.765,5.053,1.092,0.0,0.877,0.0,0.0,30.43,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,25.747,0.0,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,0.0,7.507,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158.617,158.617,0.0,86.689,86.689,0.0,46.772,25.155,0.0,0.0,6085.4,3842.9,1090.2,18286.6,123424.0,91888.0,123424.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,53.589,175.846,17.508,12.979,0.0,8.274,0.0,11441.6,10338.2,11441.6,67.161,195.178,0.0,131.0,388.0,0.0,0.0,0.0,2261.15,96.0,0.0,2357.15,0.0,0.0,0.0,43.97,108.0,151.97,1071.02,0.0,1071.02,3580.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3172.73,144.0,0.0,3316.73,0.0,0.0,0.0,484.73,144.0,628.73,805.96,0.0,805.96,4751.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3048.74,120.0,0.0,3168.74,0.0,0.0,0.0,514.5,132.0,646.5,549.24,0.0,549.24,4364.48,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,6171.2,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,123.42,91.89,123.42,0.0,0.0,0.0,6171.2,4323.2,4581.8,720.6,0.0,16.06,5.83,7.47,5.08,9.51,5.55,1.06,1.61,0.96,16.0,6.27,8.41,10.97,75.0,11.44
-project_testing-MSHP w/o Ducts-0004.osw,0,0.134,0.187,0.0,-0.345,0.0,2.451,1.179,-1.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.918,0.0,0.814,11.888,2.984,1.087,0.0,4.197,0.0,411.68,-3.884,-1.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.938,0.0,76.931,-19.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.08,124.89,0.0,0.0,0.0,118.14,0.0,144.97,0.0,0.0,5288.32,0.0,0.0,11.11,0.0,0.0,0.0,0.0,0.0,0.0,4680.41,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,5880.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,1006.96,0.0,0.0,1006.96,54652.36,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,55852.44,0.0,0.0,0.0,0.0,47135.1,0.0,0.0,0.0,0.0,0.0,47135.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.058,3.438,0.0,0.0,0.0,1.94,0.0,2.137,0.0,0.0,79.101,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,235.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,308.877,342.668,0.0,56.073,89.864,0.0,6.836,10.292,235.676,0.0,0.0,0.0,0.0,0.0,89165.0,147755.0,90976.0,0.0,25835.0,1200.0,27035.0,893.0,224.0,0.0,266.0,18220.0,3780.0,0.0,0.0,0.0,44600.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,15.375,488.846,160.259,0.0,0.0,0.0,3.359,8251.2,6284.9,8251.2,49.666,238.575,0.0,11.0,593.0,0.0,0.0,0.0,2475.65,105.6,-930.91,1650.34,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,5230.41,3016.65,0.0,3016.65,0.0,0.0,0.0,0.0,0.0,0.0,5270.75,144.0,-1981.94,3432.81,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,7591.45,3535.13,0.0,3535.13,0.0,0.0,0.0,0.0,0.0,0.0,3160.4,390.0,-1188.39,2362.01,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,6329.05,3535.13,0.0,3535.13,0.0,0.0,0.0,False,40.0,0.0,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4548.8,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,89.17,147.76,90.98,0.0,50.0,0.0,4548.8,2229.8,2471.9,371.6,668.9,14.19,11.61,8.1,2.01,6.69,2.38,0.13,3.07,0.46,12.64,14.64,4.47,8.16,8464.0,8.25
-project_testing-MSHP w/o Ducts-0005.osw,0,-0.038,-0.078,0.0,-0.049,0.0,-8.819,18.917,-0.461,3.916,-0.667,0.0,0.0,0.0,0.0,0.0,0.0,0.655,0.0,0.0,0.0,-0.036,0.355,0.0,-0.047,0.0,18.043,-17.283,-0.458,-3.682,0.769,0.0,0.0,0.0,0.0,0.0,0.0,1.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-359.41,0.0,0.0,3.69,1.67,68.0,183.35,19.65,0.0,0.0,0.0,0.15,0.0,0.0,9.55,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,386.08,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,922.64,0.0,0.0,0.0,0.0,0.0,0.0,1.79,0.0,0.0,0.0,0.0,0.0,1.79,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16300.28,0.0,0.0,0.0,0.0,0.0,0.0,14723.75,0.0,0.0,0.0,14723.75,16836.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.061,2.5,5.396,0.653,0.0,0.0,0.0,0.003,0.0,0.0,0.155,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.793,133.97,0.0,-19.088,43.088,0.009,8.07,82.803,0.0,0.0,569.4,1366.9,3981.7,49884.0,8228.0,8133.0,8315.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.463,-0.299,0.006,26.463,0.0,11.792,1.911,3488.1,3246.5,3184.9,10.635,12.47,4.652,34.0,1.0,0.0,0.0,0.0,1047.89,105.6,-1215.71,-62.23,0.25,0.0,0.25,7.34,140.4,147.74,2531.09,0.0,2531.09,2616.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3045.91,144.0,-3213.74,-23.83,0.32,0.0,0.32,103.19,144.0,247.19,2436.49,0.0,2436.49,2660.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1515.02,510.0,-1710.82,314.2,0.14,0.0,0.14,88.77,132.0,220.77,1807.92,0.0,1807.92,2343.03,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,415.75,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,8.23,8.13,8.32,0.0,50.0,0.0,415.75,1166.1,1166.1,0.0,0.0,11.85,10.5,10.28,2.57,2.37,2.39,0.79,0.55,0.62,11.64,10.82,2.9,2.61,6225.0,3.49
+project_testing-MSHP w/o Ducts-0004.osw,0,0.134,0.187,0.0,-0.345,0.0,2.451,1.179,-1.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.918,0.0,0.814,11.888,2.984,1.087,0.0,4.197,0.0,411.68,-3.884,-1.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.938,0.0,76.931,-19.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.08,124.89,0.0,0.0,0.0,118.14,0.0,144.97,0.0,0.0,5288.32,0.0,0.0,11.11,0.0,0.0,0.0,0.0,0.0,0.0,4680.41,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,5880.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,1006.96,0.0,0.0,1006.96,54652.36,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,55852.44,0.0,0.0,0.0,0.0,47135.1,0.0,0.0,0.0,0.0,0.0,47135.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.058,3.438,0.0,0.0,0.0,1.94,0.0,2.137,0.0,0.0,79.101,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,235.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,308.877,342.668,0.0,56.073,89.864,0.0,6.836,10.292,235.676,0.0,0.0,0.0,0.0,0.0,89165.0,147755.0,90976.0,0.0,25835.0,1200.0,27035.0,893.0,224.0,0.0,266.0,18220.0,3780.0,0.0,0.0,0.0,44600.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,15.375,488.846,160.259,0.0,0.0,0.0,3.359,8251.2,6284.9,8251.2,49.666,238.575,0.0,11.0,593.0,0.0,0.0,0.0,2475.65,375.6,-930.91,1920.34,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,5500.41,3016.65,0.0,3016.65,0.0,0.0,0.0,0.0,0.0,0.0,5270.75,144.0,-1981.94,3432.81,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,7591.45,3535.13,0.0,3535.13,0.0,0.0,0.0,0.0,0.0,0.0,3160.4,390.0,-1188.39,2362.01,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,6329.05,3535.13,0.0,3535.13,0.0,0.0,0.0,False,40.0,0.0,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4548.8,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,89.17,147.76,90.98,0.0,50.0,0.0,4548.8,2229.8,2471.9,371.6,668.9,14.19,11.61,8.1,2.01,6.69,2.38,0.13,3.07,0.46,12.64,14.64,4.47,8.16,8464.0,8.25
+project_testing-MSHP w/o Ducts-0005.osw,0,-0.038,-0.078,0.0,-0.049,0.0,-8.819,18.917,-0.461,3.916,-0.667,0.0,0.0,0.0,0.0,0.0,0.0,0.655,0.0,0.0,0.0,-0.036,0.355,0.0,-0.047,0.0,18.043,-17.283,-0.458,-3.682,0.769,0.0,0.0,0.0,0.0,0.0,0.0,1.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-359.41,0.0,0.0,3.69,1.67,68.0,183.35,19.65,0.0,0.0,0.0,0.15,0.0,0.0,9.55,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,386.08,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,922.64,0.0,0.0,0.0,0.0,0.0,0.0,1.79,0.0,0.0,0.0,0.0,0.0,1.79,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16300.28,0.0,0.0,0.0,0.0,0.0,0.0,14723.75,0.0,0.0,0.0,14723.75,16836.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.061,2.5,5.396,0.653,0.0,0.0,0.0,0.003,0.0,0.0,0.155,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.793,133.97,0.0,-19.088,43.088,0.009,8.07,82.803,0.0,0.0,569.4,1366.9,3981.7,49884.0,8228.0,8133.0,8315.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.463,-0.299,0.006,26.463,0.0,11.792,1.911,3488.1,3246.5,3184.9,10.635,12.47,4.652,34.0,1.0,0.0,0.0,0.0,1047.89,195.6,-2186.32,-942.84,0.25,0.0,0.25,7.34,140.4,147.74,2531.09,0.0,2531.09,1736.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1533.27,498.0,-2186.32,-155.05,0.18,0.0,0.18,9.52,97.2,106.72,3254.26,0.0,3254.26,3206.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1515.02,510.0,-1710.82,314.2,0.14,0.0,0.14,88.77,132.0,220.77,1807.92,0.0,1807.92,2343.03,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,415.75,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF",,,HVAC Cooling Efficiency|Non-Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,8.23,8.13,8.32,0.0,50.0,0.0,415.75,1166.1,1166.1,0.0,0.0,11.85,10.5,10.28,2.57,2.37,2.39,0.79,0.55,0.62,11.64,10.82,2.9,2.61,6225.0,3.49
project_testing-MSHP-0001.osw,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,209.7,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.81,0.0,0.0,0.0,0.0,0.0,0.0,1934.69,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1934.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,887.67,0.0,0.0,0.0,0.0,0.0,887.67,2822.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2822.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.936,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.202,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.933,13.933,0.0,7.907,7.907,0.0,6.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,0.174,-1.629,0.0,0.0,0.0,0.0,4.646,1228.4,1228.4,944.5,5.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201.61,118.8,0.0,320.41,0.0,0.0,0.0,5.48,104.4,109.88,0.0,0.0,0.0,430.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,331.41,144.0,0.0,475.41,0.0,0.0,0.0,53.59,144.0,197.59,0.0,0.0,0.0,673.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,278.08,120.0,0.0,398.08,0.0,0.0,0.0,66.29,132.0,198.29,0.0,0.0,0.0,596.37,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,0.0,0.0,0.0,0.0,50.0,0.0,0.0,1558.6,1558.6,0.0,0.0,13.75,14.69,11.41,0.69,0.57,0.71,0.14,0.12,0.13,7.82,15.55,1.03,1.04,5608.0,1.23
-project_testing-MSHP-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.045,0.904,0.0,-0.062,0.0,18.945,-6.333,-0.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,1.543,-1.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.06,0.0,0.0,0.0,0.0,0.0,53.43,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.07,0.0,0.0,0.0,0.0,0.0,0.0,-393.86,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,3483.54,0.0,0.0,0.0,0.0,0.0,3877.41,0.0,0.0,0.0,0.0,3877.41,3937.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.665,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-24.593,28.018,0.0,-46.401,6.21,0.0,0.0,21.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7001.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.294,15.036,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.852,7.945,4395.905,0.0,80.0,0.0,0.0,0.0,150.36,105.6,-558.32,-302.36,0.0,0.0,0.0,0.0,0.0,0.0,666.61,0.0,666.61,364.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.05,144.0,-845.01,-263.96,0.0,0.0,0.0,0.0,0.0,0.0,641.7,0.0,641.7,377.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.39,450.0,-693.34,-25.95,0.0,0.0,0.0,0.0,0.0,0.0,476.15,0.0,476.15,450.2,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,244.6,244.6,0.0,73.4,7.7,8.63,9.98,0.78,0.39,0.55,0.12,0.1,0.11,11.45,8.18,1.06,0.46,3776.0,1.5
+project_testing-MSHP-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.045,0.904,0.0,-0.062,0.0,18.945,-6.333,-0.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,1.543,-1.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.06,0.0,0.0,0.0,0.0,0.0,53.43,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.07,0.0,0.0,0.0,0.0,0.0,0.0,-393.86,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,3483.54,0.0,0.0,0.0,0.0,0.0,3877.41,0.0,0.0,0.0,0.0,3877.41,3937.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.665,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-24.593,28.018,0.0,-46.401,6.21,0.0,0.0,21.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7001.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.294,15.036,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.852,7.945,4395.905,0.0,80.0,0.0,0.0,0.0,150.36,195.6,-1849.23,-1503.27,0.0,0.0,0.0,0.0,0.0,0.0,666.61,0.0,666.61,-836.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.8,438.0,-1849.23,-1241.42,0.0,0.0,0.0,0.0,0.0,0.0,857.07,0.0,857.07,-384.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.39,450.0,-693.34,-25.95,0.0,0.0,0.0,0.0,0.0,0.0,476.15,0.0,476.15,450.2,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,244.6,244.6,0.0,73.4,7.7,8.63,9.98,0.78,0.39,0.55,0.12,0.1,0.11,11.45,8.18,1.06,0.46,3776.0,1.5
project_testing-MSHP-0003.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.106,0.463,0.0,2.109,0.0,140.992,-20.441,1.908,0.0,0.858,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,0.0,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.75,0.0,0.0,0.0,5.15,0.0,0.0,2424.91,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,2424.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,2380.78,0.0,0.0,0.0,34547.83,0.0,716.27,0.0,0.0,0.0,0.0,37644.88,44535.58,1669.47,0.0,0.0,0.0,0.0,0.0,1327.88,0.0,0.0,1468.43,4465.78,44535.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.707,0.444,0.0,0.0,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,234.541,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,0.0,7.468,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,323.145,323.145,0.0,42.462,42.462,0.0,255.566,25.117,0.0,0.0,6086.4,3843.4,1087.5,18242.2,0.0,0.0,91888.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,0.0,155.606,0.0,12.989,0.0,8.309,0.0,4032.1,4032.1,3802.0,0.0,102.11,0.0,0.0,886.0,0.0,0.0,0.0,1107.55,96.0,0.0,1203.55,0.0,0.0,0.0,240.23,108.0,348.23,1069.39,0.0,1069.39,2621.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1554.06,144.0,0.0,1698.06,0.0,0.0,0.0,2648.61,144.0,2792.61,804.73,0.0,804.73,5295.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1493.33,120.0,0.0,1613.33,0.0,0.0,0.0,2811.23,132.0,2943.23,548.4,0.0,548.4,5104.96,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,,,,,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,0.0,0.0,91.89,0.0,0.0,0.0,0.0,4323.2,4581.8,720.6,0.0,15.44,16.81,16.29,2.94,2.75,2.83,0.91,0.89,0.9,15.73,16.82,3.71,3.22,4312.0,4.03
-project_testing-MSHP-0004.osw,0,0.147,0.187,4.387,-0.262,0.0,2.342,1.174,-1.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.95,0.0,0.755,11.701,3.015,1.093,90.262,-1.309,0.0,411.14,-3.897,-1.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,0.0,77.212,-19.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,6.89,127.34,0.0,0.0,0.0,118.14,0.0,754.64,0.0,0.0,7086.25,0.0,0.0,11.24,0.0,0.0,0.0,0.0,0.0,0.0,7095.38,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,8295.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,36629.22,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,37829.29,0.0,0.0,0.0,0.0,26696.98,0.0,0.0,0.0,0.0,0.0,26696.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.188,3.463,0.0,0.0,0.0,1.94,0.0,10.911,0.0,0.0,103.89,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.405,274.196,0.0,89.792,123.583,0.0,6.836,10.292,133.485,0.0,0.0,0.0,0.0,0.0,164822.0,147755.0,184220.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,108697.0,1072.0,147537.0,0.0,0.0,0.0,293391.0,5109.0,29442.0,87.98,17.6,19.512,572.582,90.77,0.0,0.0,0.0,3.359,15547.6,4641.1,15515.8,61.949,318.518,0.0,14.0,636.0,0.0,0.0,0.0,3404.56,105.6,-930.91,2579.25,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,4851.28,1708.61,0.0,1708.61,0.0,0.0,0.0,0.0,0.0,0.0,7248.45,144.0,-1981.94,5410.51,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,8036.29,2002.27,0.0,2002.27,0.0,0.0,0.0,0.0,0.0,0.0,4346.25,390.0,-1188.39,3547.86,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,5982.04,2002.27,0.0,2002.27,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,9211.0,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF, Ducted",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,164.82,147.76,184.22,0.0,50.0,0.0,9211.0,2229.8,2471.9,371.6,668.9,14.17,11.28,8.33,1.99,10.76,2.71,0.13,3.56,0.57,13.55,16.27,3.54,15.49,1576.0,15.55
-project_testing-MSHP-0005.osw,0,-0.038,-0.076,0.0,-0.049,0.0,-8.708,23.473,-0.462,3.899,-0.664,0.0,0.0,0.0,0.0,0.0,0.0,0.68,0.0,0.0,0.0,-0.036,0.358,0.0,-0.046,0.0,18.184,-17.807,-0.459,-3.699,0.772,0.0,0.0,0.0,0.0,0.0,0.0,1.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-357.84,0.0,0.0,3.69,3.62,50.28,245.91,19.65,0.0,0.0,0.0,0.63,0.0,0.0,10.28,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,435.66,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,972.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,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16345.61,0.0,0.0,0.0,0.0,0.0,0.0,14721.31,0.0,0.0,0.0,14721.31,16882.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.132,1.854,7.762,0.653,0.0,0.0,0.0,0.012,0.0,0.0,0.169,0.0,1.495,0.384,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.59,135.766,0.0,-17.275,44.901,0.0,8.07,82.795,0.0,0.0,569.5,1366.9,3981.6,49883.5,13293.0,8133.0,16101.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,18.126,-0.679,0.0,26.463,0.0,11.794,1.911,3305.4,3165.0,3204.2,13.53,12.468,4.49,0.0,1.0,0.0,0.0,0.0,1092.0,105.6,-1243.88,-46.28,0.0,0.0,0.0,7.34,140.4,147.74,2530.85,0.0,2530.85,2632.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3174.13,144.0,-3326.01,-7.88,0.0,0.0,0.0,103.19,144.0,247.19,2436.25,0.0,2436.25,2675.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1578.79,510.0,-1755.99,332.8,0.0,0.0,0.0,88.77,132.0,220.77,1807.75,0.0,1807.75,2361.32,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,805.05,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF, Ducted",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,13.29,8.13,16.1,0.0,50.0,0.0,805.05,1166.1,1166.1,0.0,0.0,9.96,10.96,10.17,2.64,2.38,2.43,1.09,0.53,0.71,9.45,10.82,2.85,2.61,6681.0,3.31
-project_testing-PV-0001.osw,0,0.0,0.017,0.0,-1.04,0.0,-2.071,2.89,-0.087,0.0,0.0,0.0,0.0,2.191,0.0,0.0,0.0,0.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,258.23,204.89,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.71,0.0,0.0,0.0,0.0,0.0,0.0,-665.3,574.67,575.1,0.0,0.0,0.0,-2853.31,0.0,0.0,0.0,2188.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,896.67,0.0,0.0,0.0,0.0,0.0,896.67,231.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3084.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,1.099,0.911,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,-18.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.333,15.067,0.0,-9.42,8.98,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.572,-1.598,0.0,0.0,0.0,0.0,4.692,2366.4,2366.4,944.6,11.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.96,118.8,-311.78,35.98,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,145.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,376.38,144.0,-459.2,61.18,0.0,0.0,0.0,54.13,144.0,198.13,0.0,0.0,0.0,259.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.81,270.0,-412.44,173.37,0.0,0.0,0.0,66.96,132.0,198.96,0.0,0.0,0.0,372.33,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,15000.0,1558.6,1558.6,0.0,0.0,14.44,14.62,11.38,0.98,0.57,0.71,0.16,0.12,0.13,15.55,15.55,1.64,1.04,4911.0,2.37
-project_testing-PV-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-127.69,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-149.53,0.0,0.0,0.0,0.0,0.0,-206.37,0.0,41.95,0.0,56.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3954.78,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4161.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.685,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.914,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.402,29.316,0.0,-17.682,6.232,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1244.8,1220.0,802.5,4.772,12.176,2103.588,0.0,15.0,0.0,0.0,0.0,150.9,105.6,-306.36,-49.86,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,655.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,438.61,144.0,-594.07,-11.46,0.0,0.0,0.0,0.0,0.0,0.0,679.25,0.0,679.25,667.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,218.16,270.0,-399.54,88.63,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,592.64,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,15000.0,244.6,244.6,0.0,73.4,9.19,9.46,10.73,0.72,0.32,0.5,0.12,0.1,0.11,13.45,8.91,0.91,0.39,6709.0,1.24
-project_testing-PV-0003.osw,0,0.887,0.286,0.0,0.799,0.0,7.743,18.304,2.507,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.76,0.0,0.0,0.0,2.203,0.505,0.0,2.201,0.0,153.735,-22.266,3.167,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-70.91,18.41,37.0,24.24,0.0,1966.95,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,3229.3,545.89,551.46,763.64,0.0,0.0,-1091.61,15.16,0.0,0.0,4320.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,2380.78,0.0,0.0,0.0,26754.59,0.0,716.27,0.0,0.0,0.0,0.0,29851.64,53239.63,1669.47,0.0,0.0,0.0,0.0,15685.58,1335.21,0.0,0.0,1468.43,20158.69,54331.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.325,0.707,0.444,0.0,25.472,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,-22.767,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,181.633,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.22,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,361.519,384.285,0.0,45.481,68.248,0.0,202.659,113.379,0.0,0.0,6085.4,3842.9,1090.2,18286.7,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,42.909,171.22,0.0,12.979,0.0,8.273,0.0,12191.0,12191.0,3802.0,52.487,139.452,1.017,91.0,551.0,0.0,0.0,0.0,1780.06,96.0,-593.75,1282.31,0.0,0.0,0.0,190.5,108.0,298.5,4827.25,0.0,4827.25,6408.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2497.7,144.0,-833.13,1808.57,0.0,0.0,0.0,2100.3,144.0,2244.3,3632.58,0.0,3632.58,7685.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2400.08,270.0,-800.57,1869.51,0.0,0.0,0.0,2229.25,132.0,2361.25,2475.51,0.0,2475.51,6706.27,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,15000.0,4323.2,4581.8,720.6,0.0,15.98,16.81,16.41,7.11,2.75,3.22,0.98,0.91,0.92,16.0,16.82,11.01,3.22,5128.0,12.19
-project_testing-PV-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-158.25,0.0,190.97,0.0,0.0,0.0,-811.71,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,151170.23,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-22.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,769.201,791.992,0.0,-9.031,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,105.6,-458.49,26.2,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15333.51,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-886.51,64.6,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15823.28,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,270.0,-576.58,177.37,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13173.81,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,15000.0,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
-project_testing-PV-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-110.95,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,1024.57,0.0,0.0,458.7,0.0,150.51,-206.37,0.0,39.95,0.0,1230.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,17162.62,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17368.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.388,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-23.914,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.032,136.946,0.0,20.948,44.862,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3122.8,3184.9,9.592,12.473,2.029,194.0,1.0,0.0,0.0,0.0,1091.21,105.6,-581.64,615.17,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,3329.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3171.82,144.0,-1690.66,1625.16,19.87,0.0,19.87,103.19,144.0,247.19,2455.42,0.0,2455.42,4347.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1577.65,270.0,-840.93,1006.72,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,3058.04,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,15000.0,1166.1,1166.1,0.0,0.0,10.3,11.75,10.97,2.67,2.2,2.36,1.02,0.53,0.68,9.91,10.91,2.97,2.46,6681.0,3.52
+project_testing-MSHP-0004.osw,0,0.147,0.187,4.387,-0.262,0.0,2.342,1.174,-1.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.95,0.0,0.755,11.701,3.015,1.093,90.262,-1.309,0.0,411.14,-3.897,-1.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,0.0,77.212,-19.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,6.89,127.34,0.0,0.0,0.0,118.14,0.0,754.64,0.0,0.0,7086.25,0.0,0.0,11.24,0.0,0.0,0.0,0.0,0.0,0.0,7095.38,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,8295.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,36629.22,0.0,0.0,0.0,0.0,0.0,0.0,1829.9,0.0,0.0,0.0,1829.9,37829.29,0.0,0.0,0.0,0.0,26696.98,0.0,0.0,0.0,0.0,0.0,26696.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.188,3.463,0.0,0.0,0.0,1.94,0.0,10.911,0.0,0.0,103.89,0.0,0.0,0.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.405,274.196,0.0,89.792,123.583,0.0,6.836,10.292,133.485,0.0,0.0,0.0,0.0,0.0,164822.0,147755.0,184220.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,108697.0,1072.0,147537.0,0.0,0.0,0.0,293391.0,5109.0,29442.0,87.98,17.6,19.512,572.582,90.77,0.0,0.0,0.0,3.359,15547.6,4641.1,15515.8,61.949,318.518,0.0,14.0,636.0,0.0,0.0,0.0,3404.56,375.6,-930.91,2849.25,0.0,0.0,0.0,6.43,118.8,125.23,438.19,0.0,438.19,5121.28,1708.61,0.0,1708.61,0.0,0.0,0.0,0.0,0.0,0.0,7248.45,144.0,-1981.94,5410.51,0.0,0.0,0.0,97.29,144.0,241.29,382.22,0.0,382.22,8036.29,2002.27,0.0,2002.27,0.0,0.0,0.0,0.0,0.0,0.0,4346.25,390.0,-1188.39,3547.86,0.0,0.0,0.0,75.2,132.0,207.2,224.71,0.0,224.71,5982.04,2002.27,0.0,2002.27,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,9211.0,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF, Ducted",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,164.82,147.76,184.22,0.0,50.0,0.0,9211.0,2229.8,2471.9,371.6,668.9,14.17,11.28,8.33,1.99,10.76,2.71,0.13,3.56,0.57,13.55,16.27,3.54,15.49,1576.0,15.55
+project_testing-MSHP-0005.osw,0,-0.038,-0.076,0.0,-0.049,0.0,-8.708,23.473,-0.462,3.899,-0.664,0.0,0.0,0.0,0.0,0.0,0.0,0.68,0.0,0.0,0.0,-0.036,0.358,0.0,-0.046,0.0,18.184,-17.807,-0.459,-3.699,0.772,0.0,0.0,0.0,0.0,0.0,0.0,1.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-357.84,0.0,0.0,3.69,3.62,50.28,245.91,19.65,0.0,0.0,0.0,0.63,0.0,0.0,10.28,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,435.66,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,972.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,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16345.61,0.0,0.0,0.0,0.0,0.0,0.0,14721.31,0.0,0.0,0.0,14721.31,16882.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.806,0.0,0.0,0.149,0.132,1.854,7.762,0.653,0.0,0.0,0.0,0.012,0.0,0.0,0.169,0.0,1.495,0.384,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.59,135.766,0.0,-17.275,44.901,0.0,8.07,82.795,0.0,0.0,569.5,1366.9,3981.6,49883.5,13293.0,8133.0,16101.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,18.126,-0.679,0.0,26.463,0.0,11.794,1.911,3305.4,3165.0,3204.2,13.53,12.468,4.49,0.0,1.0,0.0,0.0,0.0,1092.0,195.6,-2186.32,-898.72,0.0,0.0,0.0,7.34,140.4,147.74,2530.85,0.0,2530.85,1779.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1602.36,498.0,-2186.32,-85.96,0.0,0.0,0.0,9.52,97.2,106.72,3253.94,0.0,3253.94,3274.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1578.79,510.0,-1755.99,332.8,0.0,0.0,0.0,88.77,132.0,220.77,1807.75,0.0,1807.75,2361.32,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,805.05,30.0,"HVAC Heating Efficiency|MSHP, SEER 25, 12.7 HSPF, Ducted",,,HVAC Cooling Efficiency|Ducted Heat Pump,,,Heat Pump Backup|Use Existing System,,,HVAC Secondary Heating Efficiency|None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,13.29,8.13,16.1,0.0,50.0,0.0,805.05,1166.1,1166.1,0.0,0.0,9.96,10.96,10.17,2.64,2.38,2.43,1.09,0.53,0.71,9.45,10.82,2.85,2.61,6681.0,3.31
+project_testing-PV-0001.osw,0,0.0,0.017,0.0,-1.04,0.0,-2.071,2.89,-0.087,0.0,0.0,0.0,0.0,2.191,0.0,0.0,0.0,0.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,258.23,204.89,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.71,0.0,0.0,0.0,0.0,0.0,0.0,-665.3,574.67,575.1,0.0,0.0,0.0,-2853.31,0.0,0.0,0.0,2188.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,896.67,0.0,0.0,0.0,0.0,0.0,896.67,231.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3084.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,1.099,0.911,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,-18.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.333,15.067,0.0,-9.42,8.98,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.572,-1.598,0.0,0.0,0.0,0.0,4.692,2366.4,2366.4,944.6,11.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.96,268.8,-325.59,172.17,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,282.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,376.38,144.0,-459.2,61.18,0.0,0.0,0.0,54.13,144.0,198.13,0.0,0.0,0.0,259.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.81,270.0,-412.44,173.37,0.0,0.0,0.0,66.96,132.0,198.96,0.0,0.0,0.0,372.33,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,15000.0,1558.6,1558.6,0.0,0.0,14.44,14.62,11.38,0.98,0.57,0.71,0.16,0.12,0.13,15.55,15.55,1.64,1.04,4911.0,2.37
+project_testing-PV-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-127.69,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-149.53,0.0,0.0,0.0,0.0,0.0,-206.37,0.0,41.95,0.0,56.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3954.78,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4161.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.685,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.914,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.402,29.316,0.0,-17.682,6.232,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1244.8,1220.0,802.5,4.772,12.176,2103.588,0.0,15.0,0.0,0.0,0.0,150.9,195.6,-840.02,-493.52,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,212.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,170.49,258.0,-840.02,-411.53,0.0,0.0,0.0,0.0,0.0,0.0,907.22,0.0,907.22,495.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,218.16,270.0,-399.54,88.63,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,592.64,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,15000.0,244.6,244.6,0.0,73.4,9.19,9.46,10.73,0.72,0.32,0.5,0.12,0.1,0.11,13.45,8.91,0.91,0.39,6709.0,1.24
+project_testing-PV-0003.osw,0,0.887,0.286,0.0,0.799,0.0,7.743,18.304,2.507,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.76,0.0,0.0,0.0,2.203,0.505,0.0,2.201,0.0,153.735,-22.266,3.167,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-70.91,18.41,37.0,24.24,0.0,1966.95,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,3229.3,545.89,551.46,763.64,0.0,0.0,-1091.61,15.16,0.0,0.0,4320.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,2380.78,0.0,0.0,0.0,26754.59,0.0,716.27,0.0,0.0,0.0,0.0,29851.64,53239.63,1669.47,0.0,0.0,0.0,0.0,15685.58,1335.21,0.0,0.0,1468.43,20158.69,54331.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.325,0.707,0.444,0.0,25.472,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,-22.767,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,181.633,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.22,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,361.519,384.285,0.0,45.481,68.248,0.0,202.659,113.379,0.0,0.0,6085.4,3842.9,1090.2,18286.7,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,42.909,171.22,0.0,12.979,0.0,8.273,0.0,12191.0,12191.0,3802.0,52.487,139.452,1.017,91.0,551.0,0.0,0.0,0.0,1780.06,246.0,-593.75,1432.31,0.0,0.0,0.0,190.5,108.0,298.5,4827.25,0.0,4827.25,6558.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2497.7,144.0,-833.13,1808.57,0.0,0.0,0.0,2100.3,144.0,2244.3,3632.58,0.0,3632.58,7685.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2400.08,270.0,-800.57,1869.51,0.0,0.0,0.0,2229.25,132.0,2361.25,2475.51,0.0,2475.51,6706.27,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,15000.0,4323.2,4581.8,720.6,0.0,15.98,16.81,16.41,7.11,2.75,3.22,0.98,0.91,0.92,16.0,16.82,11.01,3.22,5128.0,12.19
+project_testing-PV-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-158.25,0.0,190.97,0.0,0.0,0.0,-811.71,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,151170.23,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-22.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,769.201,791.992,0.0,-9.031,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,255.6,-471.73,162.97,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15470.28,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-886.51,64.6,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15823.28,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,270.0,-576.58,177.37,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13173.81,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,15000.0,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
+project_testing-PV-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-110.95,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,1024.57,0.0,0.0,458.7,0.0,150.51,-206.37,0.0,39.95,0.0,1230.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,17162.62,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17368.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.388,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-23.914,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.032,136.946,0.0,20.948,44.862,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3122.8,3184.9,9.592,12.473,2.029,194.0,1.0,0.0,0.0,0.0,1091.21,195.6,-840.93,445.88,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,3159.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1601.12,258.0,-840.93,1018.19,11.03,0.0,11.03,9.52,97.2,106.72,3279.55,0.0,3279.55,4415.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1577.65,270.0,-840.93,1006.72,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,3058.04,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,15000.0,30.0,Has PV|Yes,,,PV System Size|5.0 kWDC,,,PV Orientation|South,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,15000.0,1166.1,1166.1,0.0,0.0,10.3,11.75,10.97,2.67,2.2,2.36,1.02,0.53,0.68,9.91,10.91,2.97,2.46,6681.0,3.52
project_testing-Power Outage-0001.osw,0,0.0,0.001,0.0,-1.116,0.0,-2.322,2.479,-0.08,0.0,0.0,0.0,0.0,2.127,0.0,0.0,0.0,0.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.74,203.1,0.0,0.0,481.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.62,0.0,0.0,0.0,0.0,0.0,0.0,1929.09,521.0,519.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1929.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,850.73,0.0,0.0,0.0,0.0,0.0,850.73,2779.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2779.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.662,0.903,0.0,0.0,1.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,0.0,0.0,0.0,0.0,2.096,2.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.721,13.721,0.0,7.945,7.945,0.0,5.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,1.585,-1.579,0.0,0.0,0.0,0.0,4.452,1742.1,1742.1,944.6,8.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202.58,118.8,0.0,321.38,0.0,0.0,0.0,5.26,104.4,109.66,0.0,0.0,0.0,431.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,333.0,144.0,0.0,477.0,0.0,0.0,0.0,51.36,144.0,195.36,0.0,0.0,0.0,672.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,279.41,120.0,0.0,399.41,0.0,0.0,0.0,63.53,132.0,195.53,0.0,0.0,0.0,594.94,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,0.0,1558.6,1558.6,0.0,0.0,9.95,14.62,11.28,0.7,0.57,0.69,0.11,0.12,0.12,13.18,15.55,1.49,1.04,5104.0,1.74
-project_testing-Power Outage-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.038,0.873,0.0,-0.052,0.0,18.538,-5.598,-0.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,1.497,-1.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-113.16,0.0,0.0,0.0,0.0,0.0,43.86,0.0,0.0,77.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.02,0.0,0.0,0.0,0.0,0.0,0.0,-398.44,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,39.63,0.0,55.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3707.11,0.0,0.0,0.0,0.0,0.0,4105.54,0.0,0.0,0.0,0.0,4105.54,4161.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,0.0,1.222,0.0,0.0,2.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-24.02,28.591,0.0,-47.111,5.5,0.0,0.0,23.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.238,15.079,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.852,12.176,4394.703,0.0,16.0,0.0,0.0,0.0,133.09,105.6,-547.29,-308.6,0.0,0.0,0.0,0.0,0.0,0.0,705.83,0.0,705.83,397.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.84,144.0,-801.05,-270.2,0.0,0.0,0.0,0.0,0.0,0.0,679.45,0.0,679.45,409.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,192.41,450.0,-675.65,-33.24,0.0,0.0,0.0,0.0,0.0,0.0,504.17,0.0,504.17,470.93,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,7.11,8.63,9.59,0.49,0.39,0.5,0.09,0.1,0.1,7.55,8.18,0.94,0.46,3776.0,1.5
+project_testing-Power Outage-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.038,0.873,0.0,-0.052,0.0,18.538,-5.598,-0.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,1.497,-1.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-113.16,0.0,0.0,0.0,0.0,0.0,43.86,0.0,0.0,77.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.02,0.0,0.0,0.0,0.0,0.0,0.0,-398.44,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,39.63,0.0,55.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3707.11,0.0,0.0,0.0,0.0,0.0,4105.54,0.0,0.0,0.0,0.0,4105.54,4161.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,0.0,1.222,0.0,0.0,2.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-24.02,28.591,0.0,-47.111,5.5,0.0,0.0,23.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.238,15.079,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.852,12.176,4394.703,0.0,16.0,0.0,0.0,0.0,133.09,195.6,-1849.23,-1520.55,0.0,0.0,0.0,0.0,0.0,0.0,705.83,0.0,705.83,-814.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.27,438.0,-1849.23,-1261.96,0.0,0.0,0.0,0.0,0.0,0.0,907.5,0.0,907.5,-354.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,192.41,450.0,-675.65,-33.24,0.0,0.0,0.0,0.0,0.0,0.0,504.17,0.0,504.17,470.93,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,7.11,8.63,9.59,0.49,0.39,0.5,0.09,0.1,0.1,7.55,8.18,0.94,0.46,3776.0,1.5
project_testing-Power Outage-0003.osw,0,0.782,0.252,0.0,0.608,0.0,2.147,16.765,2.536,0.0,-0.014,0.0,0.0,0.0,0.0,0.0,0.0,6.331,0.0,0.0,0.0,2.225,0.503,0.0,2.226,0.0,153.633,-22.012,3.203,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.41,33.08,21.1,0.0,1502.86,0.0,91.84,245.68,53.63,0.0,0.0,0.0,0.0,0.0,0.0,0.62,23.04,0.0,0.0,0.0,4.57,0.0,0.0,3642.19,477.23,479.78,678.75,0.0,0.0,0.0,13.59,0.0,0.0,3642.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,2206.3,0.0,0.0,0.0,26730.53,0.0,663.78,0.0,0.0,0.0,0.0,29600.61,53140.29,1549.15,0.0,0.0,0.0,0.0,15671.54,1314.78,0.0,0.0,1362.03,19897.49,53140.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.301,0.656,0.404,0.0,19.856,0.0,1.631,4.633,0.993,0.0,0.0,0.0,0.0,0.0,0.0,0.012,0.421,0.0,0.0,0.0,0.086,0.0,0.0,8.413,8.258,12.864,0.0,0.0,0.0,0.261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.978,0.0,0.0,0.0,181.47,0.0,4.506,0.0,0.0,0.0,0.0,8.713,0.0,0.0,0.0,0.0,88.141,7.395,0.0,0.0,7.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,371.651,371.651,0.0,58.787,58.787,0.0,200.955,111.909,0.0,0.0,5449.0,3499.4,1016.7,17053.8,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,33.727,171.069,0.0,12.107,0.0,7.476,0.0,12190.8,12190.8,3802.0,52.56,139.452,0.0,73.0,551.0,0.0,0.0,0.0,1533.37,96.0,0.0,1629.37,0.0,0.0,0.0,188.9,108.0,296.9,4764.7,0.0,4764.7,6690.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2151.55,144.0,0.0,2295.55,0.0,0.0,0.0,2082.63,144.0,2226.63,3585.51,0.0,3585.51,8107.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2067.47,120.0,0.0,2187.47,0.0,0.0,0.0,2210.5,132.0,2342.5,2443.44,0.0,2443.44,6973.41,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,0.0,4323.2,4581.8,720.6,0.0,13.49,16.81,16.43,5.82,2.75,3.22,0.82,0.89,0.9,15.91,16.82,11.08,3.22,5128.0,12.19
-project_testing-Power Outage-0004.osw,0,0.094,0.16,2.284,-0.511,0.0,-1.657,0.862,-1.211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.671,0.0,-0.811,12.239,3.055,1.102,-0.018,4.338,0.0,423.782,-3.773,-1.213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.212,0.0,77.793,-18.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.65,166.94,0.0,0.0,0.0,106.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.65,0.0,0.0,0.0,0.0,0.0,0.0,-693.62,0.0,172.41,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,915.58,0.0,0.0,915.58,150065.08,0.0,0.0,0.0,0.0,0.0,29811.2,1678.28,0.0,0.0,0.0,31489.48,151265.16,0.0,0.0,0.0,0.0,0.0,118353.64,0.0,0.0,0.0,0.0,118353.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.346,4.235,0.0,0.0,0.0,1.763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.687,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.667,9.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,591.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.585,785.376,0.0,-23.505,10.286,0.0,6.216,177.106,591.768,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,11.865,502.886,0.0,0.0,0.0,0.0,3.081,8785.4,8785.4,417.6,59.598,212.045,0.0,9.0,398.0,0.0,0.0,0.0,283.37,105.6,-490.03,-101.06,0.0,0.0,0.0,5.84,118.8,124.64,7540.55,0.0,7540.55,15138.76,7574.63,0.0,7574.63,0.0,0.0,0.0,0.0,0.0,0.0,603.31,144.0,-809.97,-62.66,0.0,0.0,0.0,88.46,144.0,232.46,6577.31,0.0,6577.31,15623.63,8876.52,0.0,8876.52,0.0,0.0,0.0,0.0,0.0,0.0,361.75,390.0,-602.86,148.9,0.0,0.0,0.0,68.37,132.0,200.37,3866.95,0.0,3866.95,13092.74,8876.52,0.0,8876.52,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,0.0,2229.8,2471.9,371.6,668.9,10.11,15.7,14.61,2.63,0.39,0.73,0.09,0.12,0.1,13.45,15.55,7.09,0.43,5486.0,8.79
-project_testing-Power Outage-0005.osw,0,-0.03,-0.065,0.0,-0.039,0.0,-7.297,13.772,-0.373,2.711,-0.479,0.0,0.0,0.0,0.0,0.0,0.0,0.489,0.0,0.0,0.0,-0.036,0.354,0.0,-0.047,0.0,17.996,-17.224,-0.463,-3.676,0.767,0.0,0.0,0.0,0.0,0.0,0.0,1.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-334.08,0.0,0.0,3.5,36.14,65.66,175.81,19.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.34,6.19,28.0,0.0,253.26,3.79,0.0,0.0,386.18,0.0,0.0,439.17,0.0,145.19,-536.56,0.0,37.74,0.0,922.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,42.71,0.0,656.41,0.0,0.0,0.0,401.55,0.0,0.0,0.0,0.0,1100.68,15711.22,0.0,0.0,0.0,0.0,0.0,114.65,13998.43,0.0,0.0,0.0,14113.09,16247.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,0.134,1.19,2.105,4.928,0.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.367,0.425,0.584,0.0,7.065,0.086,0.0,0.0,0.0,0.0,11.719,0.0,8.611,-62.176,0.0,1.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.29,0.0,4.456,0.0,0.0,0.0,2.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,78.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.878,128.054,0.0,-21.531,40.645,0.568,7.472,79.368,0.0,0.0,529.3,1257.4,3656.0,45804.2,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,9.939,-0.287,0.0,24.426,0.0,10.436,1.775,3520.9,3391.5,3184.9,9.592,12.473,35.013,113.0,1.0,0.0,0.0,0.0,988.49,105.6,-1177.79,-83.7,15.53,0.0,15.53,6.8,140.4,147.2,2426.11,0.0,2426.11,2505.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2873.26,144.0,-3062.56,-45.3,19.87,0.0,19.87,95.56,144.0,239.56,2335.43,0.0,2335.43,2549.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1429.15,510.0,-1650.0,289.15,8.58,0.0,8.58,82.2,132.0,214.2,1732.94,0.0,1732.94,2244.87,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,8.89,11.08,10.19,1.82,2.34,2.29,0.63,0.53,0.6,9.82,10.64,2.96,2.57,6681.0,3.52
+project_testing-Power Outage-0004.osw,0,0.094,0.16,2.284,-0.511,0.0,-1.657,0.862,-1.211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.671,0.0,-0.811,12.239,3.055,1.102,-0.018,4.338,0.0,423.782,-3.773,-1.213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.212,0.0,77.793,-18.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.65,166.94,0.0,0.0,0.0,106.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.65,0.0,0.0,0.0,0.0,0.0,0.0,-693.62,0.0,172.41,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,506.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,915.58,0.0,0.0,915.58,150065.08,0.0,0.0,0.0,0.0,0.0,29811.2,1678.28,0.0,0.0,0.0,31489.48,151265.16,0.0,0.0,0.0,0.0,0.0,118353.64,0.0,0.0,0.0,0.0,118353.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.346,4.235,0.0,0.0,0.0,1.763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.687,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.667,9.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,591.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.585,785.376,0.0,-23.505,10.286,0.0,6.216,177.106,591.768,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,11.865,502.886,0.0,0.0,0.0,0.0,3.081,8785.4,8785.4,417.6,59.598,212.045,0.0,9.0,398.0,0.0,0.0,0.0,283.37,375.6,-524.48,134.5,0.0,0.0,0.0,5.84,118.8,124.64,7540.55,0.0,7540.55,15374.32,7574.63,0.0,7574.63,0.0,0.0,0.0,0.0,0.0,0.0,603.31,144.0,-809.97,-62.66,0.0,0.0,0.0,88.46,144.0,232.46,6577.31,0.0,6577.31,15623.63,8876.52,0.0,8876.52,0.0,0.0,0.0,0.0,0.0,0.0,361.75,390.0,-602.86,148.9,0.0,0.0,0.0,68.37,132.0,200.37,3866.95,0.0,3866.95,13092.74,8876.52,0.0,8876.52,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,0.0,2229.8,2471.9,371.6,668.9,10.11,15.7,14.61,2.63,0.39,0.73,0.09,0.12,0.1,13.45,15.55,7.09,0.43,5486.0,8.79
+project_testing-Power Outage-0005.osw,0,-0.03,-0.065,0.0,-0.039,0.0,-7.297,13.772,-0.373,2.711,-0.479,0.0,0.0,0.0,0.0,0.0,0.0,0.489,0.0,0.0,0.0,-0.036,0.354,0.0,-0.047,0.0,17.996,-17.224,-0.463,-3.676,0.767,0.0,0.0,0.0,0.0,0.0,0.0,1.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-334.08,0.0,0.0,3.5,36.14,65.66,175.81,19.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.34,6.19,28.0,0.0,253.26,3.79,0.0,0.0,386.18,0.0,0.0,439.17,0.0,145.19,-536.56,0.0,37.74,0.0,922.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,42.71,0.0,656.41,0.0,0.0,0.0,401.55,0.0,0.0,0.0,0.0,1100.68,15711.22,0.0,0.0,0.0,0.0,0.0,114.65,13998.43,0.0,0.0,0.0,14113.09,16247.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,0.134,1.19,2.105,4.928,0.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.367,0.425,0.584,0.0,7.065,0.086,0.0,0.0,0.0,0.0,11.719,0.0,8.611,-62.176,0.0,1.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.29,0.0,4.456,0.0,0.0,0.0,2.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,78.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.878,128.054,0.0,-21.531,40.645,0.568,7.472,79.368,0.0,0.0,529.3,1257.4,3656.0,45804.2,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,9.939,-0.287,0.0,24.426,0.0,10.436,1.775,3520.9,3391.5,3184.9,9.592,12.473,35.013,113.0,1.0,0.0,0.0,0.0,988.49,195.6,-2186.35,-1002.26,15.53,0.0,15.53,6.8,140.4,147.2,2426.11,0.0,2426.11,1586.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1447.15,498.0,-2186.35,-241.2,11.03,0.0,11.03,8.82,97.2,106.02,3119.28,0.0,3119.28,2995.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1429.15,510.0,-1650.0,289.15,8.58,0.0,8.58,82.2,132.0,214.2,1732.94,0.0,1732.94,2244.87,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,Power Outage|Summer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,8.89,11.08,10.19,1.82,2.34,2.29,0.63,0.53,0.6,9.82,10.64,2.96,2.57,6681.0,3.52
project_testing-Refrigerator-0001.osw,0,0.0,0.006,0.0,-1.098,0.0,-2.225,3.505,-0.09,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.0,0.181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,277.04,192.57,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.01,0.0,0.0,0.0,0.0,0.0,0.0,2482.83,574.67,575.1,0.0,0.0,0.0,0.0,0.0,289.04,0.0,2482.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,893.92,0.0,0.0,0.0,0.0,0.0,893.92,3376.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3376.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.86,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.199,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.262,16.262,0.0,10.194,10.194,0.0,6.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,4980.0,1254.0,0.0,0.0,13308.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.773,-1.493,0.0,0.0,0.0,0.0,4.678,2412.3,2412.3,981.0,11.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,259.91,118.8,0.0,378.71,0.0,0.0,0.0,5.52,104.4,109.92,0.0,0.0,0.0,488.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,427.25,144.0,0.0,571.25,0.0,0.0,0.0,53.97,144.0,197.97,0.0,0.0,0.0,769.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,358.5,120.0,0.0,478.5,0.0,0.0,0.0,66.76,132.0,198.76,0.0,0.0,0.0,677.26,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,2500.0,1558.6,1558.6,0.0,0.0,14.52,14.7,11.92,1.05,0.61,0.74,0.2,0.15,0.17,15.45,14.64,1.74,1.04,4911.0,2.41
-project_testing-Refrigerator-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.903,0.0,-0.062,0.0,19.027,-6.297,-0.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.234,0.0,1.547,-1.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-123.11,0.0,0.0,0.0,0.0,0.0,53.67,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.12,0.0,0.0,0.0,0.0,0.0,0.0,-394.63,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,39.95,0.0,59.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,3720.79,0.0,0.0,0.0,0.0,0.0,4115.42,0.0,0.0,0.0,0.0,4115.42,4174.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.662,0.0,0.0,0.0,0.0,0.0,1.561,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.312,29.299,0.0,-46.458,6.152,0.0,0.0,23.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.297,15.152,0.0,0.0,0.0,0.0,0.0,1498.1,1498.1,800.6,4.814,12.177,4395.02,0.0,15.0,0.0,0.0,0.0,148.95,105.6,-557.42,-302.87,0.0,0.0,0.0,0.0,0.0,0.0,707.53,0.0,707.53,404.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,432.95,144.0,-841.42,-264.47,0.0,0.0,0.0,0.0,0.0,0.0,681.09,0.0,681.09,416.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,215.35,450.0,-691.89,-26.55,0.0,0.0,0.0,0.0,0.0,0.0,505.38,0.0,505.38,478.83,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,2500.0,244.6,244.6,0.0,73.4,7.7,8.71,10.12,0.8,0.38,0.54,0.11,0.09,0.1,11.27,8.36,1.1,0.45,3776.0,1.5
+project_testing-Refrigerator-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.903,0.0,-0.062,0.0,19.027,-6.297,-0.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.234,0.0,1.547,-1.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-123.11,0.0,0.0,0.0,0.0,0.0,53.67,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.12,0.0,0.0,0.0,0.0,0.0,0.0,-394.63,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,39.95,0.0,59.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,3720.79,0.0,0.0,0.0,0.0,0.0,4115.42,0.0,0.0,0.0,0.0,4115.42,4174.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.662,0.0,0.0,0.0,0.0,0.0,1.561,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.312,29.299,0.0,-46.458,6.152,0.0,0.0,23.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.297,15.152,0.0,0.0,0.0,0.0,0.0,1498.1,1498.1,800.6,4.814,12.177,4395.02,0.0,15.0,0.0,0.0,0.0,148.95,195.6,-1849.22,-1504.67,0.0,0.0,0.0,0.0,0.0,0.0,707.53,0.0,707.53,-797.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.14,438.0,-1849.22,-1243.08,0.0,0.0,0.0,0.0,0.0,0.0,909.68,0.0,909.68,-333.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,215.35,450.0,-691.89,-26.55,0.0,0.0,0.0,0.0,0.0,0.0,505.38,0.0,505.38,478.83,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,2500.0,244.6,244.6,0.0,73.4,7.7,8.71,10.12,0.8,0.38,0.54,0.11,0.09,0.1,11.27,8.36,1.1,0.45,3776.0,1.5
project_testing-Refrigerator-0003.osw,0,0.882,0.285,0.0,0.795,0.0,7.681,18.884,2.487,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.715,0.0,0.0,0.0,2.2,0.506,0.0,2.204,0.0,153.737,-22.728,3.142,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1981.97,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4473.87,545.89,551.46,763.64,0.0,0.0,0.0,15.16,67.05,0.0,4473.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,2380.78,0.0,0.0,0.0,26678.47,0.0,716.27,0.0,0.0,0.0,0.0,29775.52,54363.51,1669.47,0.0,0.0,0.0,0.0,15641.02,1335.2,0.0,0.0,1468.43,20114.12,54363.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.707,0.444,0.0,25.69,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,181.117,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,87.97,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.61,384.61,0.0,69.34,69.34,0.0,202.142,113.128,0.0,0.0,6085.4,3842.9,1090.2,18286.6,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,4980.0,0.0,0.0,0.0,53391.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,43.348,170.731,0.0,12.979,0.0,8.273,0.0,12241.0,12241.0,3840.3,52.556,139.421,0.0,91.0,548.0,0.0,0.0,0.0,1808.61,96.0,0.0,1904.61,0.0,0.0,0.0,190.01,108.0,298.01,4816.58,0.0,4816.58,7019.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2537.75,144.0,0.0,2681.75,0.0,0.0,0.0,2094.94,144.0,2238.94,3624.55,0.0,3624.55,8545.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2438.57,120.0,0.0,2558.57,0.0,0.0,0.0,2223.56,132.0,2355.56,2470.04,0.0,2470.04,7384.17,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,2500.0,4323.2,4581.8,720.6,0.0,15.98,16.83,16.43,7.18,2.78,3.27,1.02,0.93,0.94,16.0,16.91,11.08,3.26,5128.0,12.24
-project_testing-Refrigerator-0004.osw,0,0.128,0.186,3.661,-0.502,0.0,2.263,1.478,-1.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.897,0.0,0.748,11.954,3.042,1.111,-0.018,4.351,0.0,425.05,-4.753,-1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.215,0.0,78.351,-18.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.03,257.08,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.22,0.0,0.0,0.0,0.0,0.0,0.0,-470.26,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,72.38,0.0,729.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,1006.96,0.0,0.0,1006.96,150620.73,0.0,0.0,0.0,0.0,0.0,29831.8,1816.62,0.0,0.0,0.0,31648.42,151820.81,0.0,0.0,0.0,0.0,0.0,118435.62,0.0,0.0,0.0,0.0,118435.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.189,6.532,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.783,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,592.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.262,792.053,0.0,-18.75,15.042,0.0,6.836,177.998,592.178,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6647.0,25835.0,1200.0,33682.0,893.0,224.0,30138.0,266.0,18220.0,4980.0,0.0,0.0,0.0,75938.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.779,503.235,0.0,0.0,0.0,0.0,3.334,9456.3,9456.3,452.6,59.772,212.017,0.0,16.0,395.0,0.0,0.0,0.0,414.38,105.6,-579.23,-59.25,0.0,0.0,0.0,6.43,118.8,125.23,7578.5,0.0,7578.5,15224.36,7579.88,0.0,7579.88,0.0,0.0,0.0,0.0,0.0,0.0,882.23,144.0,-1047.08,-20.85,0.0,0.0,0.0,97.29,144.0,241.29,6610.41,0.0,6610.41,15713.52,8882.67,0.0,8882.67,0.0,0.0,0.0,0.0,0.0,0.0,528.99,390.0,-721.32,197.68,0.0,0.0,0.0,75.2,132.0,207.2,3886.41,0.0,3886.41,13173.96,8882.67,0.0,8882.67,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,2500.0,2229.8,2471.9,371.6,668.9,14.3,16.14,15.31,4.12,0.43,0.81,0.17,0.16,0.14,13.64,16.36,7.99,0.48,4909.0,9.46
-project_testing-Refrigerator-0005.osw,0,-0.03,-0.071,0.0,-0.04,0.0,-7.448,17.007,-0.37,3.224,-0.547,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,-0.036,0.349,0.0,-0.048,0.0,17.77,-17.029,-0.46,-3.568,0.763,0.0,0.0,0.0,0.0,0.0,0.0,1.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,-354.17,0.0,0.0,3.69,45.38,81.39,194.02,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,489.35,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,79.91,0.0,1025.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.98,0.0,0.0,0.0,0.0,96.98,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16592.8,0.0,0.0,0.0,0.0,0.0,100.05,14717.78,0.0,0.0,0.0,14817.83,17129.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.804,0.0,0.0,0.149,1.603,2.821,5.826,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,2.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.563,82.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.134,138.311,0.0,-15.766,46.41,0.495,8.07,83.336,0.0,0.0,569.5,1366.9,3981.5,49882.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,4980.0,0.0,0.0,0.0,7596.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.816,-0.296,0.0,26.463,0.0,11.795,1.909,3565.2,3439.5,3217.6,9.671,12.193,4.235,220.0,0.0,0.0,0.0,0.0,1128.69,105.6,-1267.31,-33.02,13.53,0.0,13.53,7.34,140.4,147.74,2547.39,0.0,2547.39,2675.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3280.79,144.0,-3419.4,5.38,17.31,0.0,17.31,103.19,144.0,247.19,2452.17,0.0,2452.17,2722.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1631.85,510.0,-1793.57,348.28,7.48,0.0,7.48,88.77,132.0,220.77,1819.56,0.0,1819.56,2396.09,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2500.0,1166.1,1166.1,0.0,0.0,9.96,10.67,10.58,2.84,2.37,2.49,1.1,0.57,0.72,9.27,10.73,3.13,2.58,6681.0,3.57
+project_testing-Refrigerator-0004.osw,0,0.128,0.186,3.661,-0.502,0.0,2.263,1.478,-1.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.897,0.0,0.748,11.954,3.042,1.111,-0.018,4.351,0.0,425.05,-4.753,-1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.215,0.0,78.351,-18.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.03,257.08,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.22,0.0,0.0,0.0,0.0,0.0,0.0,-470.26,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,72.38,0.0,729.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,1006.96,0.0,0.0,1006.96,150620.73,0.0,0.0,0.0,0.0,0.0,29831.8,1816.62,0.0,0.0,0.0,31648.42,151820.81,0.0,0.0,0.0,0.0,0.0,118435.62,0.0,0.0,0.0,0.0,118435.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.189,6.532,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.783,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,592.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.262,792.053,0.0,-18.75,15.042,0.0,6.836,177.998,592.178,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6647.0,25835.0,1200.0,33682.0,893.0,224.0,30138.0,266.0,18220.0,4980.0,0.0,0.0,0.0,75938.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.779,503.235,0.0,0.0,0.0,0.0,3.334,9456.3,9456.3,452.6,59.772,212.017,0.0,16.0,395.0,0.0,0.0,0.0,414.38,375.6,-606.7,183.28,0.0,0.0,0.0,6.43,118.8,125.23,7578.5,0.0,7578.5,15466.89,7579.88,0.0,7579.88,0.0,0.0,0.0,0.0,0.0,0.0,882.23,144.0,-1047.08,-20.85,0.0,0.0,0.0,97.29,144.0,241.29,6610.41,0.0,6610.41,15713.52,8882.67,0.0,8882.67,0.0,0.0,0.0,0.0,0.0,0.0,528.99,390.0,-721.32,197.68,0.0,0.0,0.0,75.2,132.0,207.2,3886.41,0.0,3886.41,13173.96,8882.67,0.0,8882.67,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,2500.0,2229.8,2471.9,371.6,668.9,14.3,16.14,15.31,4.12,0.43,0.81,0.17,0.16,0.14,13.64,16.36,7.99,0.48,4909.0,9.46
+project_testing-Refrigerator-0005.osw,0,-0.03,-0.071,0.0,-0.04,0.0,-7.448,17.007,-0.37,3.224,-0.547,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,-0.036,0.349,0.0,-0.048,0.0,17.77,-17.029,-0.46,-3.568,0.763,0.0,0.0,0.0,0.0,0.0,0.0,1.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,-354.17,0.0,0.0,3.69,45.38,81.39,194.02,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,489.35,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,79.91,0.0,1025.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.98,0.0,0.0,0.0,0.0,96.98,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16592.8,0.0,0.0,0.0,0.0,0.0,100.05,14717.78,0.0,0.0,0.0,14817.83,17129.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.804,0.0,0.0,0.149,1.603,2.821,5.826,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,2.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.563,82.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.134,138.311,0.0,-15.766,46.41,0.495,8.07,83.336,0.0,0.0,569.5,1366.9,3981.5,49882.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,4980.0,0.0,0.0,0.0,7596.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.816,-0.296,0.0,26.463,0.0,11.795,1.909,3565.2,3439.5,3217.6,9.671,12.193,4.235,220.0,0.0,0.0,0.0,0.0,1128.69,195.6,-2186.31,-862.02,13.53,0.0,13.53,7.34,140.4,147.74,2547.39,0.0,2547.39,1846.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1659.83,498.0,-2186.31,-28.48,9.62,0.0,9.62,9.52,97.2,106.72,3275.21,0.0,3275.21,3363.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1631.85,510.0,-1793.57,348.28,7.48,0.0,7.48,88.77,132.0,220.77,1819.56,0.0,1819.56,2396.09,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,Refrigerator|EF 21.9,2500.0,17.4,Refrigerator Usage Level|100% Usage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2500.0,1166.1,1166.1,0.0,0.0,9.96,10.67,10.58,2.84,2.37,2.49,1.1,0.57,0.72,9.27,10.73,3.13,2.58,6681.0,3.57
project_testing-Rim Joists-0001.osw,0,0.0,0.017,0.0,-1.04,0.0,-2.071,2.89,-0.087,0.0,0.0,0.0,0.0,2.191,0.0,0.0,0.0,0.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,258.23,204.89,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.71,0.0,0.0,0.0,0.0,0.0,0.0,2188.01,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2188.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,896.67,0.0,0.0,0.0,0.0,0.0,896.67,3084.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3084.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,1.099,0.911,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.067,15.067,0.0,8.98,8.98,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.572,-1.598,0.0,0.0,0.0,0.0,4.692,2366.4,2366.4,944.6,11.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.96,118.8,0.0,347.76,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,457.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,376.38,144.0,0.0,520.38,0.0,0.0,0.0,54.13,144.0,198.13,0.0,0.0,0.0,718.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.81,120.0,0.0,435.81,0.0,0.0,0.0,66.96,132.0,198.96,0.0,0.0,0.0,634.77,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,0.0,1558.6,1558.6,0.0,0.0,14.44,14.62,11.38,0.98,0.57,0.71,0.16,0.12,0.13,15.55,15.55,1.64,1.04,4911.0,2.37
-project_testing-Rim Joists-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,105.6,-558.35,-302.34,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,403.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.2,144.0,-845.15,-263.94,0.0,0.0,0.0,0.0,0.0,0.0,679.25,0.0,679.25,415.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
+project_testing-Rim Joists-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,195.6,-1849.23,-1503.21,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,-797.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.88,438.0,-1849.23,-1241.35,0.0,0.0,0.0,0.0,0.0,0.0,907.22,0.0,907.22,-334.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,,,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,0.0,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
project_testing-Rim Joists-0003.osw,0,0.887,0.286,0.0,0.801,0.0,7.743,18.304,2.507,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.76,0.0,0.0,0.0,2.203,0.505,0.0,2.206,0.0,153.735,-22.266,3.167,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1967.02,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4391.88,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4391.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2380.78,0.0,0.0,0.0,26755.11,0.0,716.27,0.0,0.0,0.0,0.0,29852.16,54403.01,1669.47,0.0,0.0,0.0,0.0,15685.86,1335.21,0.0,0.0,1468.43,20158.97,54403.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.325,0.707,0.444,0.0,25.473,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,181.637,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.222,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,383.977,383.977,0.0,67.935,67.935,0.0,202.662,113.38,0.0,0.0,6085.4,3842.9,1090.2,18286.7,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,42.911,171.224,0.0,12.979,0.0,8.273,0.0,12191.0,12191.0,3802.0,52.487,139.452,0.0,91.0,551.0,0.0,0.0,0.0,1771.97,96.0,0.0,1867.97,0.0,0.0,0.0,190.5,108.0,298.5,4827.32,0.0,4827.32,6993.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2486.34,144.0,0.0,2630.34,0.0,0.0,0.0,2100.33,144.0,2244.33,3632.63,0.0,3632.63,8507.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2389.17,120.0,0.0,2509.17,0.0,0.0,0.0,2229.29,132.0,2361.29,2475.55,0.0,2475.55,7346.01,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,431.67,999.0,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,431.67,4323.2,4581.8,720.6,0.0,15.98,16.81,16.43,7.11,2.75,3.22,0.98,0.89,0.9,16.0,16.82,11.01,3.22,5128.0,12.19
-project_testing-Rim Joists-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-546.62,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,150781.86,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.201,791.992,0.0,-20.03,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,105.6,-555.2,-70.51,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15236.8,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-983.22,-32.11,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15726.57,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,390.0,-689.41,184.54,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13180.98,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,327.79,999.0,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,327.79,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
-project_testing-Rim Joists-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.29,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,449.04,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,985.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16587.09,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17123.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.805,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.187,137.363,0.0,-16.897,45.279,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3391.5,3184.9,9.592,12.473,4.436,194.0,1.0,0.0,0.0,0.0,1101.18,105.6,-1249.74,-42.96,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,2671.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3200.81,144.0,-3349.37,-4.56,19.87,0.0,19.87,103.19,144.0,247.19,2455.42,0.0,2455.42,2717.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.07,510.0,-1765.39,336.68,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,2388.0,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,9.89,11.08,10.52,2.77,2.34,2.46,1.02,0.53,0.68,9.45,10.64,3.07,2.57,6681.0,3.52
+project_testing-Rim Joists-0004.osw,0,0.132,0.187,3.62,-0.495,0.0,2.327,1.181,-1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.782,11.906,3.042,1.11,-0.018,4.348,0.0,425.051,-3.862,-1.398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.208,0.0,78.307,-19.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.96,254.32,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.07,0.0,0.0,0.0,0.0,0.0,0.0,-546.62,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,653.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1006.96,0.0,0.0,1006.96,150781.86,0.0,0.0,0.0,0.0,0.0,29879.64,1816.61,0.0,0.0,0.0,31696.25,151981.94,0.0,0.0,0.0,0.0,0.0,118625.27,0.0,0.0,0.0,0.0,118625.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.164,6.467,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.052,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.201,791.992,0.0,-20.03,13.761,0.0,6.836,178.269,593.126,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6514.0,25835.0,1200.0,33548.0,893.0,224.0,29810.0,266.0,18220.0,3780.0,0.0,0.0,0.0,74410.0,2094.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,184694.0,5109.0,29442.0,87.98,17.6,18.537,504.042,0.0,0.0,0.0,0.0,3.334,9399.4,9399.4,417.6,59.598,212.048,0.0,15.0,398.0,0.0,0.0,0.0,379.09,375.6,-584.56,170.14,0.0,0.0,0.0,6.43,118.8,125.23,7590.06,0.0,7590.06,15477.45,7592.02,0.0,7592.02,0.0,0.0,0.0,0.0,0.0,0.0,807.11,144.0,-983.22,-32.11,0.0,0.0,0.0,97.29,144.0,241.29,6620.49,0.0,6620.49,15726.57,8896.9,0.0,8896.9,0.0,0.0,0.0,0.0,0.0,0.0,483.95,390.0,-689.41,184.54,0.0,0.0,0.0,75.2,132.0,207.2,3892.34,0.0,3892.34,13180.98,8896.9,0.0,8896.9,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,327.79,999.0,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,327.79,2229.8,2471.9,371.6,668.9,14.3,15.7,14.98,4.06,0.39,0.76,0.13,0.12,0.1,13.64,15.55,7.93,0.43,4909.0,9.4
+project_testing-Rim Joists-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.29,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,449.04,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,985.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16587.09,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17123.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.805,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.187,137.363,0.0,-16.897,45.279,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3391.5,3184.9,9.592,12.473,4.436,194.0,1.0,0.0,0.0,0.0,1101.18,195.6,-2186.32,-889.54,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,1824.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1616.74,498.0,-2186.32,-71.58,11.03,0.0,11.03,9.52,97.2,106.72,3279.55,0.0,3279.55,3325.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.07,510.0,-1765.39,336.68,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,2388.0,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,"Insulation Rim Joist|R-13, Interior",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,9.89,11.08,10.52,2.77,2.34,2.46,1.02,0.53,0.68,9.45,10.64,3.07,2.57,6681.0,3.52
project_testing-Sheathing-0001.osw,0,0.0,0.009,0.0,-1.069,0.0,-2.222,2.953,-0.034,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.0,0.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,231.9,191.23,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,2148.3,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2148.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,895.57,0.0,0.0,0.0,0.0,0.0,895.57,3043.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3043.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.981,0.861,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.893,14.893,0.0,8.813,8.813,0.0,6.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,10894.0,1254.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,46399.0,6481.0,0.0,89.6,4.28,2.302,-1.455,0.0,0.0,0.0,0.0,4.686,2248.6,2248.6,921.6,10.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,224.7,118.8,0.0,343.5,0.0,0.0,0.0,5.53,104.4,109.93,0.0,0.0,0.0,453.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,369.38,144.0,0.0,513.38,0.0,0.0,0.0,54.07,144.0,198.07,0.0,0.0,0.0,711.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,309.94,120.0,0.0,429.94,0.0,0.0,0.0,66.88,132.0,198.88,0.0,0.0,0.0,628.82,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,3132.79,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,3132.79,1558.6,1558.6,0.0,0.0,14.46,14.73,12.59,0.93,0.56,0.69,0.16,0.12,0.13,15.45,15.73,1.56,1.02,4911.0,2.25
-project_testing-Sheathing-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.908,0.0,-0.061,0.0,19.029,-6.325,-0.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,1.552,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.39,0.0,0.0,0.0,0.0,0.0,53.67,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.13,0.0,0.0,0.0,0.0,0.0,0.0,-393.9,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3675.44,0.0,0.0,0.0,0.0,0.0,4069.34,0.0,0.0,0.0,0.0,4069.34,4129.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.667,0.0,0.0,0.0,0.0,0.0,1.564,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.505,29.106,0.0,-46.392,6.219,0.0,0.0,22.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8065.0,66.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11564.0,211.0,518.0,82.04,45.68,0.321,15.007,0.0,0.0,0.0,0.0,0.0,1500.1,1500.1,788.4,4.766,12.165,4397.007,0.0,15.0,0.0,0.0,0.0,150.57,105.6,-558.45,-302.28,0.0,0.0,0.0,0.0,0.0,0.0,699.61,0.0,699.61,397.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.66,144.0,-845.54,-263.88,0.0,0.0,0.0,0.0,0.0,0.0,673.46,0.0,673.46,409.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.69,450.0,-693.55,-25.86,0.0,0.0,0.0,0.0,0.0,0.0,499.72,0.0,499.72,473.86,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,491.65,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,491.65,244.6,244.6,0.0,73.4,8.0,8.71,10.37,0.79,0.39,0.54,0.12,0.1,0.11,11.0,8.36,1.07,0.46,3776.0,1.5
+project_testing-Sheathing-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.908,0.0,-0.061,0.0,19.029,-6.325,-0.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,1.552,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.39,0.0,0.0,0.0,0.0,0.0,53.67,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.13,0.0,0.0,0.0,0.0,0.0,0.0,-393.9,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3675.44,0.0,0.0,0.0,0.0,0.0,4069.34,0.0,0.0,0.0,0.0,4069.34,4129.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.667,0.0,0.0,0.0,0.0,0.0,1.564,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.505,29.106,0.0,-46.392,6.219,0.0,0.0,22.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8065.0,66.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11564.0,211.0,518.0,82.04,45.68,0.321,15.007,0.0,0.0,0.0,0.0,0.0,1500.1,1500.1,788.4,4.766,12.165,4397.007,0.0,15.0,0.0,0.0,0.0,150.57,195.6,-1849.22,-1503.06,0.0,0.0,0.0,0.0,0.0,0.0,699.61,0.0,699.61,-803.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,170.08,438.0,-1849.22,-1241.15,0.0,0.0,0.0,0.0,0.0,0.0,899.5,0.0,899.5,-341.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.69,450.0,-693.55,-25.86,0.0,0.0,0.0,0.0,0.0,0.0,499.72,0.0,499.72,473.86,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,491.65,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,491.65,244.6,244.6,0.0,73.4,8.0,8.71,10.37,0.79,0.39,0.54,0.12,0.1,0.11,11.0,8.36,1.07,0.46,3776.0,1.5
project_testing-Sheathing-0003.osw,0,0.904,0.282,0.0,0.824,0.0,7.388,18.501,2.638,0.0,0.042,0.0,0.0,0.0,0.0,0.0,0.0,5.48,0.0,0.0,0.0,2.242,0.506,0.0,2.269,0.0,154.325,-22.019,3.33,0.0,0.883,0.0,0.0,0.0,0.0,0.0,0.0,17.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1871.2,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4296.06,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4296.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,2380.78,0.0,0.0,0.0,25912.8,0.0,716.27,0.0,0.0,0.0,0.0,29009.85,52970.99,1669.47,0.0,0.0,0.0,0.0,15192.14,1335.05,0.0,0.0,1468.43,19665.08,52970.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.325,0.707,0.444,0.0,24.259,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,175.919,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,85.445,7.509,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.266,374.266,0.0,66.72,66.72,0.0,196.944,110.602,0.0,0.0,6085.4,3842.9,1090.2,18286.6,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,49077.0,3342.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,127733.0,8978.0,0.0,95.0,32.9,40.408,165.779,0.0,12.979,0.0,8.273,0.0,12192.1,12192.1,3802.0,50.268,138.234,0.0,87.0,520.0,0.0,0.0,0.0,1740.28,96.0,0.0,1836.28,0.0,0.0,0.0,185.13,108.0,293.13,4709.05,0.0,4709.05,6838.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2441.88,144.0,0.0,2585.88,0.0,0.0,0.0,2041.07,144.0,2185.07,3543.63,0.0,3543.63,8314.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2346.45,120.0,0.0,2466.45,0.0,0.0,0.0,2166.38,132.0,2298.38,2414.9,0.0,2414.9,7179.73,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,8689.63,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,8689.63,4323.2,4581.8,720.6,0.0,16.01,16.81,16.39,6.82,2.75,3.18,0.98,0.89,0.9,16.0,16.82,10.67,3.22,5128.0,12.19
-project_testing-Sheathing-0004.osw,0,0.134,0.187,3.576,-0.489,0.0,2.381,1.18,-1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.443,0.0,0.843,11.955,3.053,1.113,-0.018,4.369,0.0,425.357,-3.863,-1.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58,0.0,78.552,-18.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,251.12,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23,0.0,0.0,0.0,0.0,0.0,0.0,-550.83,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,649.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,1006.96,0.0,0.0,1006.96,149908.25,0.0,0.0,0.0,0.0,0.0,29704.61,1816.61,0.0,0.0,0.0,31521.22,151108.33,0.0,0.0,0.0,0.0,0.0,117930.9,0.0,0.0,0.0,0.0,117930.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,2.134,6.384,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.068,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,753.634,787.425,0.0,-20.141,13.65,0.0,6.836,177.285,589.655,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6424.0,25835.0,1200.0,33459.0,893.0,224.0,29590.0,266.0,18220.0,3780.0,0.0,0.0,0.0,73386.0,1291.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,183454.0,3869.0,29442.0,87.98,17.6,18.246,501.091,0.0,0.0,0.0,0.0,3.334,9274.6,9274.6,417.6,58.76,211.875,0.0,15.0,382.0,0.0,0.0,0.0,376.04,105.6,-553.13,-71.48,0.0,0.0,0.0,6.43,118.8,125.23,7548.15,0.0,7548.15,15149.48,7547.58,0.0,7547.58,0.0,0.0,0.0,0.0,0.0,0.0,800.61,144.0,-977.69,-33.08,0.0,0.0,0.0,97.29,144.0,241.29,6583.94,0.0,6583.94,15636.97,8844.82,0.0,8844.82,0.0,0.0,0.0,0.0,0.0,0.0,480.05,390.0,-686.65,183.4,0.0,0.0,0.0,75.2,132.0,207.2,3870.85,0.0,3870.85,13106.27,8844.82,0.0,8844.82,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4481.9,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,4481.9,2229.8,2471.9,371.6,668.9,14.29,15.7,14.98,3.99,0.39,0.74,0.13,0.12,0.1,13.64,15.55,7.82,0.43,4909.0,9.27
-project_testing-Sheathing-0005.osw,0,-0.021,-0.076,0.0,-0.027,0.0,-7.415,16.754,-0.269,3.163,-0.519,0.0,0.0,0.0,0.0,0.0,0.0,0.203,0.0,0.0,0.0,-0.027,0.341,0.0,-0.034,0.0,17.691,-16.345,-0.335,-3.644,0.783,0.0,0.0,0.0,0.0,0.0,0.0,1.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.36,0.0,0.0,3.69,44.15,79.27,195.1,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,444.93,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,981.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.66,0.0,0.0,0.0,0.0,94.66,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16546.38,0.0,0.0,0.0,0.0,0.0,97.67,14720.47,0.0,0.0,0.0,14818.14,17082.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.805,0.0,0.0,0.149,1.551,2.731,5.922,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.483,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.549,82.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.894,137.07,0.0,-17.0,45.176,0.483,8.07,83.341,0.0,0.0,569.5,1366.9,3981.3,49879.7,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6195.0,140.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,15888.0,1267.0,0.0,82.04,45.68,13.483,-0.214,0.0,26.463,0.0,11.794,1.91,3537.6,3398.9,3184.6,9.471,12.044,4.45,180.0,0.0,0.0,0.0,0.0,1098.67,105.6,-1248.14,-43.87,13.21,0.0,13.21,7.34,140.4,147.74,2547.55,0.0,2547.55,2664.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3193.53,144.0,-3343.0,-5.47,16.9,0.0,16.9,103.19,144.0,247.19,2452.33,0.0,2452.33,2710.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1588.44,510.0,-1762.82,335.62,7.3,0.0,7.3,88.77,132.0,220.77,1819.68,0.0,1819.68,2383.37,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,2343.86,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2343.86,1166.1,1166.1,0.0,0.0,9.93,10.58,10.75,2.78,2.27,2.45,1.07,0.53,0.68,9.18,11.09,3.08,2.44,6681.0,3.54
+project_testing-Sheathing-0004.osw,0,0.134,0.187,3.576,-0.489,0.0,2.381,1.18,-1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.443,0.0,0.843,11.955,3.053,1.113,-0.018,4.369,0.0,425.357,-3.863,-1.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.58,0.0,78.552,-18.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,251.12,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23,0.0,0.0,0.0,0.0,0.0,0.0,-550.83,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,649.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,1006.96,0.0,0.0,1006.96,149908.25,0.0,0.0,0.0,0.0,0.0,29704.61,1816.61,0.0,0.0,0.0,31521.22,151108.33,0.0,0.0,0.0,0.0,0.0,117930.9,0.0,0.0,0.0,0.0,117930.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,2.134,6.384,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.068,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,753.634,787.425,0.0,-20.141,13.65,0.0,6.836,177.285,589.655,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6424.0,25835.0,1200.0,33459.0,893.0,224.0,29590.0,266.0,18220.0,3780.0,0.0,0.0,0.0,73386.0,1291.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,183454.0,3869.0,29442.0,87.98,17.6,18.246,501.091,0.0,0.0,0.0,0.0,3.334,9274.6,9274.6,417.6,58.76,211.875,0.0,15.0,382.0,0.0,0.0,0.0,376.04,375.6,-582.64,169.0,0.0,0.0,0.0,6.43,118.8,125.23,7548.15,0.0,7548.15,15389.96,7547.58,0.0,7547.58,0.0,0.0,0.0,0.0,0.0,0.0,800.61,144.0,-977.69,-33.08,0.0,0.0,0.0,97.29,144.0,241.29,6583.94,0.0,6583.94,15636.97,8844.82,0.0,8844.82,0.0,0.0,0.0,0.0,0.0,0.0,480.05,390.0,-686.65,183.4,0.0,0.0,0.0,75.2,132.0,207.2,3870.85,0.0,3870.85,13106.27,8844.82,0.0,8844.82,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4481.9,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,4481.9,2229.8,2471.9,371.6,668.9,14.29,15.7,14.98,3.99,0.39,0.74,0.13,0.12,0.1,13.64,15.55,7.82,0.43,4909.0,9.27
+project_testing-Sheathing-0005.osw,0,-0.021,-0.076,0.0,-0.027,0.0,-7.415,16.754,-0.269,3.163,-0.519,0.0,0.0,0.0,0.0,0.0,0.0,0.203,0.0,0.0,0.0,-0.027,0.341,0.0,-0.034,0.0,17.691,-16.345,-0.335,-3.644,0.783,0.0,0.0,0.0,0.0,0.0,0.0,1.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.36,0.0,0.0,3.69,44.15,79.27,195.1,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,444.93,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,981.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.66,0.0,0.0,0.0,0.0,94.66,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16546.38,0.0,0.0,0.0,0.0,0.0,97.67,14720.47,0.0,0.0,0.0,14818.14,17082.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.805,0.0,0.0,0.149,1.551,2.731,5.922,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.483,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.549,82.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.894,137.07,0.0,-17.0,45.176,0.483,8.07,83.341,0.0,0.0,569.5,1366.9,3981.3,49879.7,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6195.0,140.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,15888.0,1267.0,0.0,82.04,45.68,13.483,-0.214,0.0,26.463,0.0,11.794,1.91,3537.6,3398.9,3184.6,9.471,12.044,4.45,180.0,0.0,0.0,0.0,0.0,1098.67,195.6,-2186.32,-892.05,13.21,0.0,13.21,7.34,140.4,147.74,2547.55,0.0,2547.55,1816.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1612.81,498.0,-2186.32,-75.5,9.39,0.0,9.39,9.52,97.2,106.72,3275.42,0.0,3275.42,3316.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1588.44,510.0,-1762.82,335.62,7.3,0.0,7.3,88.77,132.0,220.77,1819.68,0.0,1819.68,2383.37,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,2343.86,999.0,Insulation Sheathing|R-5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2343.86,1166.1,1166.1,0.0,0.0,9.93,10.58,10.75,2.78,2.27,2.45,1.07,0.53,0.68,9.18,11.09,3.08,2.44,6681.0,3.54
project_testing-Walls-0001.osw,0,0.0,0.016,0.0,-1.044,0.0,-2.09,2.904,-0.08,0.0,0.0,0.0,0.0,2.188,0.0,0.0,0.0,0.251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252.67,203.8,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.01,0.0,0.0,0.0,0.0,0.0,0.0,2180.65,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2180.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,896.4,0.0,0.0,0.0,0.0,0.0,896.4,3077.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3077.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,1.071,0.902,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.199,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.027,15.027,0.0,8.942,8.942,0.0,6.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,11893.0,2253.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,48653.0,8736.0,0.0,89.6,4.28,2.514,-1.564,0.0,0.0,0.0,0.0,4.691,2366.4,2366.4,943.0,11.828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,227.99,118.8,0.0,346.79,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,456.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.78,144.0,0.0,518.78,0.0,0.0,0.0,54.12,144.0,198.12,0.0,0.0,0.0,716.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,314.47,120.0,0.0,434.47,0.0,0.0,0.0,66.94,132.0,198.94,0.0,0.0,0.0,633.41,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,3444.51,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,3444.51,1558.6,1558.6,0.0,0.0,14.42,14.7,11.35,0.98,0.57,0.71,0.16,0.11,0.13,15.55,15.55,1.63,1.05,4911.0,2.37
-project_testing-Walls-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.045,0.903,0.0,-0.063,0.0,19.021,-6.328,-0.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,1.549,-1.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.76,0.0,0.0,0.0,0.0,0.0,54.01,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.21,0.0,0.0,0.0,0.0,0.0,0.0,-393.86,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,3686.88,0.0,0.0,0.0,0.0,0.0,4080.74,0.0,0.0,0.0,0.0,4080.74,4140.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.67,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.442,29.169,0.0,-46.393,6.217,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8128.0,129.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11604.0,251.0,518.0,82.04,45.68,0.3,15.029,0.0,0.0,0.0,0.0,0.0,1500.0,1500.0,802.3,4.769,12.169,4394.867,0.0,15.0,0.0,0.0,0.0,150.54,105.6,-558.43,-302.3,0.0,0.0,0.0,0.0,0.0,0.0,701.57,0.0,701.57,399.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.56,144.0,-845.46,-263.9,0.0,0.0,0.0,0.0,0.0,0.0,675.35,0.0,675.35,411.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.64,450.0,-693.52,-25.88,0.0,0.0,0.0,0.0,0.0,0.0,501.12,0.0,501.12,475.24,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,540.57,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,540.57,244.6,244.6,0.0,73.4,7.3,8.63,10.2,0.81,0.39,0.55,0.12,0.1,0.11,10.45,8.18,1.14,0.46,3776.0,1.5
+project_testing-Walls-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.045,0.903,0.0,-0.063,0.0,19.021,-6.328,-0.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,1.549,-1.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.76,0.0,0.0,0.0,0.0,0.0,54.01,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.21,0.0,0.0,0.0,0.0,0.0,0.0,-393.86,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.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,3686.88,0.0,0.0,0.0,0.0,0.0,4080.74,0.0,0.0,0.0,0.0,4080.74,4140.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.67,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.442,29.169,0.0,-46.393,6.217,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8128.0,129.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11604.0,251.0,518.0,82.04,45.68,0.3,15.029,0.0,0.0,0.0,0.0,0.0,1500.0,1500.0,802.3,4.769,12.169,4394.867,0.0,15.0,0.0,0.0,0.0,150.54,195.6,-1849.22,-1503.09,0.0,0.0,0.0,0.0,0.0,0.0,701.57,0.0,701.57,-801.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,170.03,438.0,-1849.22,-1241.2,0.0,0.0,0.0,0.0,0.0,0.0,902.02,0.0,902.02,-339.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.64,450.0,-693.52,-25.88,0.0,0.0,0.0,0.0,0.0,0.0,501.12,0.0,501.12,475.24,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,540.57,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,540.57,244.6,244.6,0.0,73.4,7.3,8.63,10.2,0.81,0.39,0.55,0.12,0.1,0.11,10.45,8.18,1.14,0.46,3776.0,1.5
project_testing-Walls-0003.osw,0,0.885,0.286,0.0,0.795,0.0,7.812,18.273,2.477,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,8.225,0.0,0.0,0.0,2.195,0.504,0.0,2.188,0.0,153.594,-22.304,3.129,0.0,0.878,0.0,0.0,0.0,0.0,0.0,0.0,25.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1986.34,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4411.2,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4411.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2380.78,0.0,0.0,0.0,26942.67,0.0,716.27,0.0,0.0,0.0,0.0,30039.72,54719.94,1669.47,0.0,0.0,0.0,0.0,15795.87,1335.25,0.0,0.0,1468.43,20269.02,54719.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.325,0.707,0.444,0.0,25.718,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,182.91,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.841,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.115,386.115,0.0,68.18,68.18,0.0,203.936,113.999,0.0,0.0,6085.4,3842.9,1090.2,18286.7,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52625.0,6890.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,132109.0,13354.0,0.0,95.0,32.9,43.419,172.444,0.0,12.979,0.0,8.272,0.0,12190.8,12190.8,3802.0,52.765,139.626,0.0,92.0,555.0,0.0,0.0,0.0,1778.36,96.0,0.0,1874.36,0.0,0.0,0.0,191.7,108.0,299.7,4853.67,0.0,4853.67,7027.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2495.31,144.0,0.0,2639.31,0.0,0.0,0.0,2113.53,144.0,2257.53,3652.46,0.0,3652.46,8549.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2397.79,120.0,0.0,2517.79,0.0,0.0,0.0,2243.29,132.0,2375.29,2489.06,0.0,2489.06,7382.14,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,9554.27,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,9554.27,4323.2,4581.8,720.6,0.0,15.98,16.81,16.43,7.16,2.75,3.23,0.98,0.89,0.9,16.0,16.82,11.07,3.22,5128.0,12.19
-project_testing-Walls-0004.osw,0,0.113,0.187,3.719,-0.514,0.0,2.265,1.178,-1.547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.794,0.0,0.727,11.923,3.01,1.105,-0.019,4.309,0.0,424.557,-3.863,-1.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.667,0.0,77.984,-18.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.21,260.5,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23,0.0,0.0,0.0,0.0,0.0,0.0,-538.02,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,662.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,1006.96,0.0,0.0,1006.96,152091.26,0.0,0.0,0.0,0.0,0.0,30141.28,1816.62,0.0,0.0,0.0,31957.9,153291.33,0.0,0.0,0.0,0.0,0.0,119664.42,0.0,0.0,0.0,0.0,119664.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,6.647,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.524,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,598.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,765.117,798.908,0.0,-19.782,14.009,0.0,6.836,179.741,598.322,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6706.0,25835.0,1200.0,33741.0,893.0,224.0,30281.0,266.0,18220.0,3780.0,0.0,0.0,0.0,76607.0,3819.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,186515.0,6930.0,29442.0,87.98,17.6,19.195,508.456,0.0,0.0,0.0,0.0,3.334,9632.5,9632.5,417.6,60.944,212.308,0.0,15.0,405.0,0.0,0.0,0.0,385.93,105.6,-559.86,-68.33,0.0,0.0,0.0,6.43,118.8,125.23,7652.72,0.0,7652.72,15368.14,7658.52,0.0,7658.52,0.0,0.0,0.0,0.0,0.0,0.0,821.67,144.0,-995.6,-29.93,0.0,0.0,0.0,97.29,144.0,241.29,6675.15,0.0,6675.15,15861.34,8974.83,0.0,8974.83,0.0,0.0,0.0,0.0,0.0,0.0,492.68,390.0,-695.6,187.08,0.0,0.0,0.0,75.2,132.0,207.2,3924.47,0.0,3924.47,13293.58,8974.83,0.0,8974.83,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4927.86,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,4927.86,2229.8,2471.9,371.6,668.9,14.3,15.7,14.99,4.19,0.39,0.79,0.13,0.12,0.1,13.73,15.55,8.13,0.43,4909.0,9.63
-project_testing-Walls-0005.osw,0,-0.046,-0.051,0.0,-0.061,0.0,-6.71,15.215,-0.564,3.101,-0.552,0.0,0.0,0.0,0.0,0.0,0.0,1.14,0.0,0.0,0.0,-0.056,0.368,0.0,-0.074,0.0,18.446,-18.554,-0.701,-3.722,0.76,0.0,0.0,0.0,0.0,0.0,0.0,2.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.02,0.0,0.0,3.69,44.4,79.8,201.76,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,452.7,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,989.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.27,0.0,0.0,0.0,0.0,136.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16641.45,0.0,0.0,0.0,0.0,0.0,140.34,14723.49,0.0,0.0,0.0,14863.83,17178.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.804,0.0,0.0,0.149,1.567,2.763,6.059,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.789,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.546,137.722,0.0,-16.814,45.362,0.696,8.07,83.595,0.0,0.0,569.5,1366.9,3981.8,49886.1,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,7172.0,1117.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16796.0,2176.0,0.0,82.04,45.68,13.027,-0.517,0.0,26.463,0.0,11.791,1.911,3500.8,3377.0,3187.4,9.932,12.937,4.414,233.0,1.0,0.0,0.0,0.0,1103.19,105.6,-1251.03,-42.24,19.02,0.0,19.02,7.34,140.4,147.74,2555.3,0.0,2555.3,2679.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3206.66,144.0,-3354.5,-3.84,24.33,0.0,24.33,103.19,144.0,247.19,2459.8,0.0,2459.8,2727.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1594.98,510.0,-1767.45,337.53,10.51,0.0,10.51,88.77,132.0,220.77,1825.22,0.0,1825.22,2394.03,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,2577.08,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2577.08,1166.1,1166.1,0.0,0.0,9.96,10.71,10.66,2.78,2.34,2.45,1.04,0.53,0.68,9.36,10.64,3.08,2.56,6681.0,3.5
+project_testing-Walls-0004.osw,0,0.113,0.187,3.719,-0.514,0.0,2.265,1.178,-1.547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.794,0.0,0.727,11.923,3.01,1.105,-0.019,4.309,0.0,424.557,-3.863,-1.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.667,0.0,77.984,-18.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.21,260.5,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.23,0.0,0.0,0.0,0.0,0.0,0.0,-538.02,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,662.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,1006.96,0.0,0.0,1006.96,152091.26,0.0,0.0,0.0,0.0,0.0,30141.28,1816.62,0.0,0.0,0.0,31957.9,153291.33,0.0,0.0,0.0,0.0,0.0,119664.42,0.0,0.0,0.0,0.0,119664.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,6.647,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.524,10.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,598.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,765.117,798.908,0.0,-19.782,14.009,0.0,6.836,179.741,598.322,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,6706.0,25835.0,1200.0,33741.0,893.0,224.0,30281.0,266.0,18220.0,3780.0,0.0,0.0,0.0,76607.0,3819.0,19123.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,186515.0,6930.0,29442.0,87.98,17.6,19.195,508.456,0.0,0.0,0.0,0.0,3.334,9632.5,9632.5,417.6,60.944,212.308,0.0,15.0,405.0,0.0,0.0,0.0,385.93,375.6,-588.85,172.68,0.0,0.0,0.0,6.43,118.8,125.23,7652.72,0.0,7652.72,15609.15,7658.52,0.0,7658.52,0.0,0.0,0.0,0.0,0.0,0.0,821.67,144.0,-995.6,-29.93,0.0,0.0,0.0,97.29,144.0,241.29,6675.15,0.0,6675.15,15861.34,8974.83,0.0,8974.83,0.0,0.0,0.0,0.0,0.0,0.0,492.68,390.0,-695.6,187.08,0.0,0.0,0.0,75.2,132.0,207.2,3924.47,0.0,3924.47,13293.58,8974.83,0.0,8974.83,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,4927.86,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,4927.86,2229.8,2471.9,371.6,668.9,14.3,15.7,14.99,4.19,0.39,0.79,0.13,0.12,0.1,13.73,15.55,8.13,0.43,4909.0,9.63
+project_testing-Walls-0005.osw,0,-0.046,-0.051,0.0,-0.061,0.0,-6.71,15.215,-0.564,3.101,-0.552,0.0,0.0,0.0,0.0,0.0,0.0,1.14,0.0,0.0,0.0,-0.056,0.368,0.0,-0.074,0.0,18.446,-18.554,-0.701,-3.722,0.76,0.0,0.0,0.0,0.0,0.0,0.0,2.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.02,0.0,0.0,3.69,44.4,79.8,201.76,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,452.7,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,989.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.27,0.0,0.0,0.0,0.0,136.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16641.45,0.0,0.0,0.0,0.0,0.0,140.34,14723.49,0.0,0.0,0.0,14863.83,17178.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.804,0.0,0.0,0.149,1.567,2.763,6.059,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.789,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.546,137.722,0.0,-16.814,45.362,0.696,8.07,83.595,0.0,0.0,569.5,1366.9,3981.8,49886.1,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,7172.0,1117.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16796.0,2176.0,0.0,82.04,45.68,13.027,-0.517,0.0,26.463,0.0,11.791,1.911,3500.8,3377.0,3187.4,9.932,12.937,4.414,233.0,1.0,0.0,0.0,0.0,1103.19,195.6,-2186.32,-887.53,19.02,0.0,19.02,7.34,140.4,147.74,2555.3,0.0,2555.3,1834.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1619.89,498.0,-2186.32,-68.43,13.51,0.0,13.51,9.52,97.2,106.72,3285.39,0.0,3285.39,3337.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1594.98,510.0,-1767.45,337.53,10.51,0.0,10.51,88.77,132.0,220.77,1825.22,0.0,1825.22,2394.03,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,2577.08,999.0,"Insulation Wall|Wood Stud, R-13",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,2577.08,1166.1,1166.1,0.0,0.0,9.96,10.71,10.66,2.78,2.34,2.45,1.04,0.53,0.68,9.36,10.64,3.08,2.56,6681.0,3.5
project_testing-Windows-0001.osw,0,0.0,0.017,0.0,-1.04,0.0,-2.071,2.89,-0.087,0.0,0.0,0.0,0.0,2.191,0.0,0.0,0.0,0.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,258.23,204.89,0.0,0.0,532.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.71,0.0,0.0,0.0,0.0,0.0,0.0,2188.01,574.67,575.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2188.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,896.67,0.0,0.0,0.0,0.0,0.0,896.67,3084.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3084.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,1.099,0.911,0.0,0.0,2.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,2.305,2.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.067,15.067,0.0,8.98,8.98,0.0,6.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18787.0,0.0,0.0,0.0,4723.0,1200.0,5923.0,0.0,423.0,0.0,844.0,3338.0,3780.0,1254.0,0.0,0.0,12108.0,2468.0,0.0,0.0,939.0,0.0,4080.0,30976.0,3923.0,0.0,0.0,49485.0,9568.0,0.0,89.6,4.28,2.572,-1.598,0.0,0.0,0.0,0.0,4.692,2366.4,2366.4,944.6,11.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.96,118.8,0.0,347.76,0.0,0.0,0.0,5.54,104.4,109.94,0.0,0.0,0.0,457.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,376.38,144.0,0.0,520.38,0.0,0.0,0.0,54.13,144.0,198.13,0.0,0.0,0.0,718.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.81,120.0,0.0,435.81,0.0,0.0,0.0,66.96,132.0,198.96,0.0,0.0,0.0,634.77,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2179.0,0.0,0.0,2179.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,2179.0,18.79,0.0,0.0,0.0,50.0,0.0,0.0,1558.6,1558.6,0.0,0.0,14.44,14.62,11.38,0.98,0.57,0.71,0.16,0.12,0.13,15.55,15.55,1.64,1.04,4911.0,2.37
-project_testing-Windows-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,105.6,-558.35,-302.34,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,403.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.2,144.0,-845.15,-263.94,0.0,0.0,0.0,0.0,0.0,0.0,679.25,0.0,679.25,415.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,3359.52,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,3359.52,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
+project_testing-Windows-0002.osw,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.044,0.905,0.0,-0.062,0.0,19.004,-6.294,-0.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.235,0.0,1.545,-1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-124.41,0.0,0.0,0.0,0.0,0.0,53.72,0.0,0.0,81.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.11,0.0,0.0,0.0,0.0,0.0,0.0,-393.89,0.0,0.0,0.0,0.0,0.0,-454.01,0.0,41.95,0.0,60.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3710.41,0.0,0.0,0.0,0.0,0.0,4104.31,0.0,0.0,0.0,0.0,4104.31,4164.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.666,0.0,0.0,0.0,0.0,0.0,1.558,0.0,0.0,2.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-52.611,0.0,1.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.315,29.296,0.0,-46.398,6.212,0.0,0.0,23.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11668.0,0.0,-597.0,1200.0,603.0,0.0,420.0,0.0,0.0,1535.0,4980.0,0.0,0.0,0.0,8193.0,194.0,1064.0,0.0,463.0,0.0,0.0,10372.0,0.0,0.0,0.0,11668.0,316.0,518.0,82.04,45.68,0.33,15.146,0.0,0.0,0.0,0.0,0.0,1499.9,1499.9,802.5,4.772,12.176,4397.056,0.0,15.0,0.0,0.0,0.0,150.41,195.6,-1849.23,-1503.21,0.0,0.0,0.0,0.0,0.0,0.0,705.62,0.0,705.62,-797.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.88,438.0,-1849.23,-1241.35,0.0,0.0,0.0,0.0,0.0,0.0,907.22,0.0,907.22,-334.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.46,450.0,-693.39,-25.93,0.0,0.0,0.0,0.0,0.0,0.0,504.01,0.0,504.01,478.08,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,0.0,0.0,1682.0,0.0,0.0,1682.0,0.0,3359.52,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,7.0,4.67,0.0,0.0,3359.52,244.6,244.6,0.0,73.4,8.63,8.71,9.99,0.77,0.39,0.55,0.12,0.1,0.11,11.18,8.36,1.01,0.46,3776.0,1.5
project_testing-Windows-0003.osw,0,0.887,0.286,0.0,0.799,0.0,7.743,18.304,2.507,0.0,0.041,0.0,0.0,0.0,0.0,0.0,0.0,7.76,0.0,0.0,0.0,2.203,0.505,0.0,2.201,0.0,153.735,-22.266,3.167,0.0,0.879,0.0,0.0,0.0,0.0,0.0,0.0,24.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.41,37.0,24.24,0.0,1966.95,0.0,102.68,279.22,61.61,0.0,0.0,0.0,0.0,0.0,0.0,0.71,19.69,0.0,0.0,0.0,5.15,0.0,0.0,4391.81,545.89,551.46,763.64,0.0,0.0,0.0,15.16,0.0,0.0,4391.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,2380.78,0.0,0.0,0.0,26754.59,0.0,716.27,0.0,0.0,0.0,0.0,29851.64,54402.14,1669.47,0.0,0.0,0.0,0.0,15685.58,1335.21,0.0,0.0,1468.43,20158.69,54402.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,0.707,0.444,0.0,25.472,0.0,1.765,5.053,1.092,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.38,0.0,0.0,0.0,0.093,0.0,0.0,9.252,9.135,13.921,0.0,0.0,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.163,0.0,0.0,0.0,181.633,0.0,4.863,0.0,0.0,0.0,0.0,9.39,0.0,0.0,0.0,0.0,88.22,7.51,0.0,0.0,8.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,383.971,383.971,0.0,67.934,67.934,0.0,202.659,113.379,0.0,0.0,6085.4,3842.9,1090.2,18286.7,91371.0,0.0,131268.0,0.0,53380.0,1200.0,54580.0,1058.0,248.0,0.0,637.0,40012.0,3780.0,0.0,0.0,0.0,52191.0,6456.0,0.0,1122.0,297.0,0.0,1181.0,116156.0,0.0,0.0,0.0,131268.0,12512.0,0.0,95.0,32.9,42.909,171.22,0.0,12.979,0.0,8.273,0.0,12191.0,12191.0,3802.0,52.487,139.452,0.0,91.0,551.0,0.0,0.0,0.0,1771.94,96.0,0.0,1867.94,0.0,0.0,0.0,190.5,108.0,298.5,4827.25,0.0,4827.25,6993.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2486.3,144.0,0.0,2630.3,0.0,0.0,0.0,2100.3,144.0,2244.3,3632.58,0.0,3632.58,8507.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2389.14,120.0,0.0,2509.14,0.0,0.0,0.0,2229.25,132.0,2361.25,2475.51,0.0,2475.51,7345.9,0.0,0.0,0.0,0.0,0.0,0.0,False,40.0,0.0,1862.3,0.0,5587.0,0.0,1862.3,0.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.8,2082.2,91.37,0.0,91.89,39.38,0.0,0.0,0.0,4323.2,4581.8,720.6,0.0,15.98,16.81,16.43,7.11,2.75,3.22,0.98,0.89,0.9,16.0,16.82,11.01,3.22,5128.0,12.19
-project_testing-Windows-0004.osw,0,0.22,0.181,2.517,-0.321,0.0,3.303,1.092,-0.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.206,0.0,1.555,3.359,3.172,1.122,-0.009,4.525,0.0,429.016,-3.954,-0.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.744,0.0,29.826,-6.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.09,190.16,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25,0.0,0.0,0.0,0.0,0.0,0.0,-634.47,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,565.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,1006.96,0.0,0.0,1006.96,141110.93,0.0,0.0,0.0,0.0,0.0,27951.73,1815.05,0.0,0.0,0.0,29766.78,142311.01,0.0,0.0,0.0,0.0,0.0,110971.66,0.0,0.0,0.0,0.0,110971.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,4.609,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,157.209,10.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,554.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,706.532,740.323,0.0,-22.58,11.211,0.0,6.836,167.417,554.858,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,5203.0,25835.0,1200.0,32238.0,893.0,224.0,26571.0,266.0,18220.0,3780.0,0.0,0.0,0.0,59447.0,2094.0,7400.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,165416.0,5109.0,10165.0,87.98,17.6,11.942,471.522,0.0,0.0,0.0,0.0,3.331,7721.5,7721.5,417.6,48.613,209.16,0.0,15.0,284.0,0.0,0.0,0.0,308.86,105.6,-507.38,-92.93,0.0,0.0,0.0,6.43,118.8,125.23,7128.03,0.0,7128.03,14262.52,7102.19,0.0,7102.19,0.0,0.0,0.0,0.0,0.0,0.0,657.57,144.0,-856.09,-54.53,0.0,0.0,0.0,97.29,144.0,241.29,6217.48,0.0,6217.48,14727.11,8322.87,0.0,8322.87,0.0,0.0,0.0,0.0,0.0,0.0,394.28,390.0,-625.9,158.39,0.0,0.0,0.0,75.2,132.0,207.2,3655.4,0.0,3655.4,12343.86,8322.87,0.0,8322.87,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,30615.55,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,30615.55,2229.8,2471.9,371.6,668.9,14.42,15.7,15.04,3.0,0.39,0.52,0.12,0.12,0.1,13.73,15.55,6.44,0.43,4909.0,7.72
-project_testing-Windows-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.29,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,449.04,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,985.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16587.09,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17123.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.805,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.187,137.363,0.0,-16.897,45.279,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3391.5,3184.9,9.592,12.473,4.436,194.0,1.0,0.0,0.0,0.0,1101.18,105.6,-1249.74,-42.96,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,2671.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3200.81,144.0,-3349.37,-4.56,19.87,0.0,19.87,103.19,144.0,247.19,2455.42,0.0,2455.42,2717.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.07,510.0,-1765.39,336.68,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,2388.0,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,9.89,11.08,10.52,2.77,2.34,2.46,1.02,0.53,0.68,9.45,10.64,3.07,2.57,6681.0,3.52
+project_testing-Windows-0004.osw,0,0.22,0.181,2.517,-0.321,0.0,3.303,1.092,-0.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.206,0.0,1.555,3.359,3.172,1.122,-0.009,4.525,0.0,429.016,-3.954,-0.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.744,0.0,29.826,-6.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.09,190.16,0.0,0.0,0.0,118.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.25,0.0,0.0,0.0,0.0,0.0,0.0,-634.47,0.0,190.97,0.0,0.0,0.0,-1200.08,0.0,0.0,0.0,565.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,1006.96,0.0,0.0,1006.96,141110.93,0.0,0.0,0.0,0.0,0.0,27951.73,1815.05,0.0,0.0,0.0,29766.78,142311.01,0.0,0.0,0.0,0.0,0.0,110971.66,0.0,0.0,0.0,0.0,110971.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,4.609,0.0,0.0,0.0,1.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.972,0.0,0.0,0.0,-33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,157.209,10.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,554.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,706.532,740.323,0.0,-22.58,11.211,0.0,6.836,167.417,554.858,0.0,0.0,0.0,0.0,0.0,121288.0,0.0,184694.0,5203.0,25835.0,1200.0,32238.0,893.0,224.0,26571.0,266.0,18220.0,3780.0,0.0,0.0,0.0,59447.0,2094.0,7400.0,1114.0,419.0,0.0,1072.0,147537.0,0.0,0.0,0.0,165416.0,5109.0,10165.0,87.98,17.6,11.942,471.522,0.0,0.0,0.0,0.0,3.331,7721.5,7721.5,417.6,48.613,209.16,0.0,15.0,284.0,0.0,0.0,0.0,308.86,375.6,-540.47,143.99,0.0,0.0,0.0,6.43,118.8,125.23,7128.03,0.0,7128.03,14499.44,7102.19,0.0,7102.19,0.0,0.0,0.0,0.0,0.0,0.0,657.57,144.0,-856.09,-54.53,0.0,0.0,0.0,97.29,144.0,241.29,6217.48,0.0,6217.48,14727.11,8322.87,0.0,8322.87,0.0,0.0,0.0,0.0,0.0,0.0,394.28,390.0,-625.9,158.39,0.0,0.0,0.0,75.2,132.0,207.2,3655.4,0.0,3655.4,12343.86,8322.87,0.0,8322.87,0.0,0.0,0.0,False,40.0,1016.82,1076.0,0.0,3228.0,0.0,1076.0,3228.0,0.0,30615.55,30.0,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105.4,1203.0,121.29,0.0,147.76,36.94,50.0,0.0,30615.55,2229.8,2471.9,371.6,668.9,14.42,15.7,15.04,3.0,0.39,0.52,0.12,0.12,0.1,13.73,15.55,6.44,0.43,4909.0,7.72
+project_testing-Windows-0005.osw,0,-0.031,-0.063,0.0,-0.04,0.0,-7.095,16.138,-0.375,3.131,-0.537,0.0,0.0,0.0,0.0,0.0,0.0,0.512,0.0,0.0,0.0,-0.037,0.355,0.0,-0.047,0.0,18.026,-17.292,-0.465,-3.684,0.768,0.0,0.0,0.0,0.0,0.0,0.0,1.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-356.29,0.0,0.0,3.69,43.95,79.0,199.61,19.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.48,4.82,29.12,0.0,263.46,3.96,0.0,0.0,449.04,0.0,0.0,458.7,0.0,150.51,-536.56,0.0,39.95,0.0,985.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.27,0.0,0.0,0.0,0.0,111.27,0.0,46.09,0.0,709.25,0.0,0.0,0.0,433.31,0.0,0.0,0.0,0.0,1188.65,16587.09,0.0,0.0,0.0,0.0,0.0,114.65,14723.48,0.0,0.0,0.0,14838.13,17123.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.805,0.0,0.0,0.149,1.556,2.743,6.007,0.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.495,0.383,0.627,0.0,7.598,0.093,0.0,0.0,0.0,0.0,12.677,0.0,9.304,-62.176,0.0,1.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,0.0,0.0,0.0,0.313,0.0,4.815,0.0,0.0,0.0,2.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.645,82.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.187,137.363,0.0,-16.897,45.279,0.568,8.07,83.446,0.0,0.0,569.4,1366.9,3981.1,49877.5,6209.0,0.0,16266.0,0.0,-834.0,1200.0,366.0,0.0,132.0,0.0,0.0,2143.0,3780.0,0.0,0.0,0.0,6396.0,341.0,0.0,0.0,146.0,0.0,0.0,14475.0,0.0,0.0,0.0,16265.0,1645.0,0.0,82.04,45.68,13.303,-0.328,0.0,26.463,0.0,11.792,1.911,3520.9,3391.5,3184.9,9.592,12.473,4.436,194.0,1.0,0.0,0.0,0.0,1101.18,195.6,-2186.32,-889.54,15.53,0.0,15.53,7.34,140.4,147.74,2550.76,0.0,2550.76,1824.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1616.74,498.0,-2186.32,-71.58,11.03,0.0,11.03,9.52,97.2,106.72,3279.55,0.0,3279.55,3325.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1592.07,510.0,-1765.39,336.68,8.58,0.0,8.58,88.77,132.0,220.77,1821.97,0.0,1821.97,2388.0,0.0,0.0,0.0,0.0,0.0,0.0,False,30.0,0.0,0.0,0.0,2648.0,0.0,0.0,2648.0,0.0,,,"Windows|Triple, Low-E, Non-metal, Air, L-Gain",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,6.21,0.0,8.13,8.13,50.0,0.0,0.0,1166.1,1166.1,0.0,0.0,9.89,11.08,10.52,2.77,2.34,2.46,1.02,0.53,0.68,9.45,10.64,3.07,2.57,6681.0,3.52
diff --git a/workflow/run_analysis.rb b/workflow/run_analysis.rb
index 74975d5543..c4e657865d 100644
--- a/workflow/run_analysis.rb
+++ b/workflow/run_analysis.rb
@@ -144,6 +144,7 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_
utility_bills = workflow_args['utility_bills']
bld_exist_model_args['utility_bill_scenario_names'] = utility_bills.collect { |s| s['scenario_name'] }.join(',')
bld_exist_model_args['utility_bill_simple_filepaths'] = utility_bills.collect { |s| s['simple_filepath'] }.join(',')
+ bld_exist_model_args['utility_bill_detailed_filepaths'] = utility_bills.collect { |s| s['detailed_filepath'] }.join(',')
bld_exist_model_args['utility_bill_electricity_fixed_charges'] = utility_bills.collect { |s| s['elec_fixed_charge'] }.join(',')
bld_exist_model_args['utility_bill_electricity_marginal_rates'] = utility_bills.collect { |s| s['elec_marginal_rate'] }.join(',')
bld_exist_model_args['utility_bill_natural_gas_fixed_charges'] = utility_bills.collect { |s| s['gas_fixed_charge'] }.join(',')