diff --git a/resources/hpxml-measures/Changelog.md b/resources/hpxml-measures/Changelog.md
index 4af338f68a..82c35fcb51 100644
--- a/resources/hpxml-measures/Changelog.md
+++ b/resources/hpxml-measures/Changelog.md
@@ -32,7 +32,7 @@ __New Features__
- Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325).
- Updated heating/cooling performance curves to reflect newer equipment.
- Allows optional `HeatingAutosizingFactor`, `CoolingAutosizingFactor`, `BackupHeatingAutosizingFactor` inputs to scale HVAC equipment autosizing results.
-- Adds optional `Slab/extension/GapInsulationRValue` input for cases where a slab has horizontal insulation.
+- Adds optional `Slab/extension/GapInsulationRValue` input for cases where a slab has horizontal (under slab) insulation.
- Allows radiant barriers for additional locations (attic gable walls and floor); reduced emissivity due to dust assumed for radiant barriers on attic floor.
- Adds window and skylight `GlassType` options of "low-e, high-solar-gain" and "low-e, low-solar-gain"; updates U-factor/SHGC lookup tables.
- BuildResidentialHPXML measure:
diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml
index 65441e4e97..ecc6d95902 100644
--- a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml
+++ b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml
@@ -3,8 +3,8 @@
3.1
hpxm_lto_openstudio
b1543b30-9465-45ff-ba04-1d1f85e763bc
- 72226c3c-5208-498c-ba24-f528e95b4f7a
- 2024-04-08T19:03:07Z
+ a29c684e-60c6-4228-8d59-8f6c311f1172
+ 2024-04-09T20:34:32Z
D8922A73
HPXMLtoOpenStudio
HPXML to OpenStudio Translator
@@ -166,7 +166,7 @@
constructions.rb
rb
resource
- 6A89B50D
+ 1F9097D1
data/Xing_okstate_0664D_13659_Table_A-3.csv
@@ -328,7 +328,7 @@
hpxml_schematron/EPvalidator.xml
xml
resource
- B8313E06
+ D80BDF8A
hpxml_schematron/iso-schematron.xsd
@@ -604,7 +604,7 @@
test_enclosure.rb
rb
test
- 584B9033
+ 68F1127B
test_generator.rb
diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb
index b8ef939d96..dcedbaa395 100644
--- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb
+++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb
@@ -2015,7 +2015,7 @@ def self.apply_wall_construction(runner,
constr_sets = [
SIPConstructionSet.new(10.0, 0.16, 0.0, sheathing_thick_in, 0.5, mat_int_finish, mat_ext_finish), # 10" SIP core
SIPConstructionSet.new(5.0, 0.16, 0.0, sheathing_thick_in, 0.5, mat_int_finish, mat_ext_finish), # 5" SIP core
- SIPConstructionSet.new(1.0, 0.01, 0.0, sheathing_thick_in, 0.0, fallback_mat_int_finish, fallback_mat_ext_finish), # Fallback
+ SIPConstructionSet.new(1.1, 0.01, 0.0, sheathing_thick_in, 0.0, fallback_mat_int_finish, fallback_mat_ext_finish), # Fallback
]
match, constr_set, cavity_r = pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film)
@@ -2150,10 +2150,10 @@ def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floo
elsif floor_type == HPXML::FloorTypeSIP
constr_sets = [
- SIPConstructionSet.new(16.0, 0.16, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 16" SIP core
- SIPConstructionSet.new(12.0, 0.16, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 12" SIP core
- SIPConstructionSet.new(8.0, 0.16, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 8" SIP core
- SIPConstructionSet.new(1.0, 0.01, 0.0, 0.0, 0.0, fallback_mat_int_finish_or_covering, nil), # Fallback
+ SIPConstructionSet.new(16.0, 0.08, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 16" SIP core
+ SIPConstructionSet.new(12.0, 0.08, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 12" SIP core
+ SIPConstructionSet.new(8.0, 0.08, 0.0, 0.0, osb_thick_in, mat_int_finish_or_covering, nil), # 8" SIP core
+ SIPConstructionSet.new(1.1, 0.01, 0.0, 0.0, 0.0, fallback_mat_int_finish_or_covering, nil), # Fallback
]
match, constr_set, cavity_r = pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film)
@@ -2264,7 +2264,7 @@ def self.pick_double_stud_construction_set(assembly_r, constr_sets, inside_film,
end
end
- return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value
+ return false, constr_sets[-1], 0.1 # Pick fallback construction with minimum R-value
end
def self.pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film)
@@ -2299,7 +2299,7 @@ def self.pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside
end
end
- return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value
+ return false, constr_sets[-1], 0.1 # Pick fallback construction with minimum R-value
end
def self.pick_cmu_construction_set(assembly_r, constr_sets, inside_film, outside_film)
diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml
index 41418ba1ad..a00cab949b 100644
--- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml
+++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml
@@ -205,23 +205,23 @@
Expected 0 or 1 element(s) for xpath: ClimateandRiskZones/ClimateZoneIECC
Expected 1 element(s) for xpath: ClimateandRiskZones/WeatherStation
Expected 0 or 1 element(s) for xpath: Enclosure/AirInfiltration/extension/HasFlueOrChimneyInConditionedSpace
- Expected 1 element(s) for xpath: Enclosure/AirInfiltration/AirInfiltrationMeasurement[BuildingAirLeakage/AirLeakage | EffectiveLeakageArea]
- Expected 0 or more element(s) for xpath: Enclosure/Roofs/Roof
- Expected 0 or more element(s) for xpath: Enclosure/RimJoists/RimJoist
- Expected 1 or more element(s) for xpath: Enclosure/Walls/Wall
- Expected 0 or more element(s) for xpath: Enclosure/FoundationWalls/FoundationWall
- Expected 0 or more element(s) for xpath: Enclosure/Floors/Floor
- Expected 0 or more element(s) for xpath: Enclosure/Slabs/Slab
- Expected 0 or more element(s) for xpath: Enclosure/Windows/Window
- Expected 0 or more element(s) for xpath: Enclosure/Skylights/Skylight
- Expected 0 or more element(s) for xpath: Enclosure/Doors/Door
- Expected 0 or 1 element(s) for xpath: Enclosure/extension/PartitionWallMass
- Expected 0 or 1 element(s) for xpath: Enclosure/extension/FurnitureMass
- Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatingSystem
- Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/CoolingSystem
- Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatPump
+ Expected 1 element(s) for xpath: Enclosure/AirInfiltration/AirInfiltrationMeasurement[BuildingAirLeakage/AirLeakage | EffectiveLeakageArea]
+ Expected 0 or more element(s) for xpath: Enclosure/Roofs/Roof
+ Expected 0 or more element(s) for xpath: Enclosure/RimJoists/RimJoist
+ Expected 1 or more element(s) for xpath: Enclosure/Walls/Wall
+ Expected 0 or more element(s) for xpath: Enclosure/FoundationWalls/FoundationWall
+ Expected 0 or more element(s) for xpath: Enclosure/Floors/Floor
+ Expected 0 or more element(s) for xpath: Enclosure/Slabs/Slab
+ Expected 0 or more element(s) for xpath: Enclosure/Windows/Window
+ Expected 0 or more element(s) for xpath: Enclosure/Skylights/Skylight
+ Expected 0 or more element(s) for xpath: Enclosure/Doors/Door
+ Expected 0 or 1 element(s) for xpath: Enclosure/extension/PartitionWallMass
+ Expected 0 or 1 element(s) for xpath: Enclosure/extension/FurnitureMass
+ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatingSystem
+ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/CoolingSystem
+ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatPump
Expected 0 or 1 element(s) for xpath: Systems/HVAC/HVACControl
- Expected 0 or more element(s) for xpath: Systems/HVAC/HVACDistribution
+ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACDistribution
Expected 0 or more element(s) for xpath: Systems/MechanicalVentilation/VentilationFans/VentilationFan
Expected 0 or more element(s) for xpath: Systems/WaterHeating/WaterHeatingSystem
Expected 0 or 1 element(s) for xpath: Systems/WaterHeating/HotWaterDistribution
@@ -1344,7 +1344,7 @@
Expected 1 element(s) for xpath: FractionCoolLoadServed
Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value
Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value
- Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop
+ Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop
Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon
Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0
Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM
diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb
index ecee224dd6..e765373ab0 100644
--- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb
+++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb
@@ -1037,6 +1037,13 @@ def test_aspect_ratios
def _check_surface(hpxml_surface, os_surface, expected_layer_names, radiant_barrier_emittance = nil)
os_construction = os_surface.construction.get.to_LayeredConstruction.get
+ # Check layers have valid properties
+ for i in 0..os_construction.numLayers - 1
+ layer = os_construction.getLayer(i)
+ assert_operator(layer.thickness, :>, 0)
+ assert_operator(layer.to_OpaqueMaterial.get.thermalConductivity, :>, 0)
+ end
+
# Check exterior solar absorptance and emittance
exterior_layer = os_construction.getLayer(0).to_OpaqueMaterial.get
if hpxml_surface.respond_to? :solar_absorptance
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv
similarity index 97%
rename from resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv
rename to resources/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv
index 51b6cdb3d7..84000a4a5d 100644
--- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv
@@ -1,4 +1,4 @@
-HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD)
+HPXML,Utility Bills: Bills: Total (USD),Utility Bills: Bills: Electricity: Fixed (USD),Utility Bills: Bills: Electricity: Energy (USD),Utility Bills: Bills: Electricity: PV Credit (USD),Utility Bills: Bills: Electricity: Total (USD),Utility Bills: Bills: Natural Gas: Fixed (USD),Utility Bills: Bills: Natural Gas: Energy (USD),Utility Bills: Bills: Natural Gas: Total (USD),Utility Bills: Bills: Fuel Oil: Fixed (USD),Utility Bills: Bills: Fuel Oil: Energy (USD),Utility Bills: Bills: Fuel Oil: Total (USD),Utility Bills: Bills: Propane: Fixed (USD),Utility Bills: Bills: Propane: Energy (USD),Utility Bills: Bills: Propane: Total (USD),Utility Bills: Bills: Wood Cord: Fixed (USD),Utility Bills: Bills: Wood Cord: Energy (USD),Utility Bills: Bills: Wood Cord: Total (USD),Utility Bills: Bills: Wood Pellets: Fixed (USD),Utility Bills: Bills: Wood Pellets: Energy (USD),Utility Bills: Bills: Wood Pellets: Total (USD),Utility Bills: Bills: Coal: Fixed (USD),Utility Bills: Bills: Coal: Energy (USD),Utility Bills: Bills: Coal: Total (USD)
base-appliances-coal.xml,1803.23,144.0,1203.09,0.0,1347.09,144.0,239.13,383.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,73.01,73.01
base-appliances-dehumidifier-ief-portable.xml,1512.7,144.0,1206.42,0.0,1350.42,144.0,18.28,162.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
base-appliances-dehumidifier-ief-whole-home.xml,1513.41,144.0,1207.28,0.0,1351.28,144.0,18.13,162.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
@@ -132,8 +132,8 @@ base-enclosure-beds-1.xml,1659.75,144.0,1109.77,0.0,1253.77,144.0,261.98,405.98,
base-enclosure-beds-2.xml,1749.25,144.0,1207.26,0.0,1351.26,144.0,253.99,397.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
base-enclosure-beds-4.xml,1921.73,144.0,1395.52,0.0,1539.52,144.0,238.21,382.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
base-enclosure-beds-5.xml,2006.68,144.0,1488.26,0.0,1632.26,144.0,230.42,374.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
-base-enclosure-ceilingtypes.xml,2023.31,144.0,1322.58,0.0,1466.58,144.0,412.73,556.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
-base-enclosure-floortypes.xml,1758.51,144.0,1061.83,0.0,1205.83,144.0,408.68,552.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
+base-enclosure-ceilingtypes.xml,2024.17,144.0,1323.15,0.0,1467.15,144.0,413.02,557.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-floortypes.xml,1759.53,144.0,1062.32,0.0,1206.32,144.0,409.21,553.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
base-enclosure-garage.xml,1807.57,144.0,1247.7,0.0,1391.7,144.0,271.87,415.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
base-enclosure-infil-ach-house-pressure.xml,1836.09,144.0,1302.04,0.0,1446.04,144.0,246.05,390.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
base-enclosure-infil-cfm-house-pressure.xml,1836.09,144.0,1302.04,0.0,1446.04,144.0,246.05,390.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
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv
new file mode 100644
index 0000000000..d6b4bdf16f
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv
@@ -0,0 +1,311 @@
+HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu)
+base-appliances-coal.xml,60.222,60.222,32.781,32.781,22.573,0.0,0.0,0.0,0.0,4.867,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0
+base-appliances-dehumidifier-ief-portable.xml,34.727,34.727,32.963,32.963,1.764,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.818,1.843,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.467,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-dehumidifier-ief-whole-home.xml,34.736,34.736,32.987,32.987,1.75,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.814,1.842,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.494,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-dehumidifier-multiple.xml,34.71,34.71,32.903,32.903,1.806,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.807,1.84,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.421,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-dehumidifier.xml,34.683,34.683,32.931,32.931,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.808,1.84,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.447,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-freezer-temperature-dependent-schedule.xml,59.438,59.438,36.883,36.883,22.555,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.273,0.809,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,1.276,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-gas.xml,60.222,60.222,32.781,32.781,27.441,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-modified.xml,58.737,58.737,36.448,36.448,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.272,0.808,9.536,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.637,0.365,1.519,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-none.xml,53.01,53.01,28.088,28.088,24.922,0.0,0.0,0.0,0.0,0.0,0.0,0.411,0.0,0.0,3.845,0.706,7.785,0.0,0.0,4.507,0.0,0.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,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-oil.xml,60.222,60.222,32.781,32.781,22.573,4.867,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-propane.xml,60.222,60.222,32.781,32.781,22.573,0.0,4.867,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-refrigerator-temperature-dependent-schedule.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-appliances-wood.xml,60.222,60.222,32.781,32.781,22.573,0.0,0.0,4.867,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.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
+base-atticroof-cathedral.xml,62.195,62.195,35.473,35.473,26.722,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.113,0.771,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-conditioned.xml,64.292,64.292,40.383,40.383,23.91,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.876,0.953,8.919,0.0,0.0,5.748,0.0,0.398,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,11.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-flat.xml,55.31,55.31,34.765,34.765,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,3.617,0.659,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-radiant-barrier-ceiling.xml,38.67,38.67,33.45,33.45,5.22,0.0,0.0,0.0,0.0,0.0,0.0,0.023,0.0,0.0,9.615,2.003,6.712,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.181,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-radiant-barrier.xml,37.48,37.48,32.998,32.998,4.482,0.0,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.0,9.243,1.924,6.711,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.185,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-unvented-insulated-roof.xml,58.382,58.382,34.944,34.944,23.438,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,3.728,0.68,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-atticroof-vented.xml,59.155,59.155,35.289,35.289,23.865,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,3.86,0.712,9.189,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-battery-scheduled.xml,60.439,60.439,37.212,37.212,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-battery.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,37.028,37.028,24.04,24.04,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.095,0.0,0.0,1.534,0.185,9.672,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,22.488,22.488,22.488,22.488,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.565,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-multiple.xml,32.364,32.364,24.943,24.943,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.054,0.0,0.0,2.077,0.304,9.557,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.083,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,50.251,50.251,23.789,23.789,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,1.417,0.158,9.755,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.399,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,26.114,26.114,24.211,24.211,1.904,0.0,0.0,0.0,0.0,0.0,0.0,0.014,0.0,0.0,1.558,0.191,9.582,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.466,26.466,24.825,24.825,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.012,0.0,0.0,1.971,0.292,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.144,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.717,26.717,25.953,25.953,0.764,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.855,0.509,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.19,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-residents-1.xml,19.916,19.916,18.508,18.508,1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.394,0.394,4.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.165,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.506,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.381,27.381,26.459,26.459,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,3.079,0.755,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.147,28.147,27.161,27.161,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.646,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.617,27.617,26.743,26.743,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.105,0.0,0.0,3.303,0.755,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.439,31.439,30.72,30.72,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,7.193,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.735,27.735,27.017,27.017,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,3.49,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.606,23.606,22.809,22.809,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.691,23.691,22.838,22.838,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.617,23.617,22.858,22.858,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.088,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.595,23.595,23.024,23.024,0.572,0.0,0.0,0.0,0.0,0.0,0.179,0.075,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.617,23.617,22.861,22.861,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,23.47,23.47,22.849,22.849,0.621,0.0,0.0,0.0,0.0,0.0,0.04,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.353,26.353,26.353,26.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.056,0.746,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.016,27.016,27.016,27.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.619,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.575,26.575,26.575,26.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.277,0.746,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,30.529,30.529,30.529,30.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,26.861,26.861,26.861,26.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.464,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-generator.xml,40.963,34.139,25.897,19.073,0.899,0.0,14.167,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,0.0
+base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.333,28.333,28.333,28.333,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.382,0.0,0.0,2.266,2.864,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.684,31.684,16.434,16.434,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.861,0.511,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.825,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-laundry-room.xml,29.601,29.601,16.252,16.252,13.349,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.723,0.475,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.039,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.421,51.421,30.435,30.435,20.986,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,2.762,0.295,9.563,0.0,0.0,2.025,0.0,0.206,3.706,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.821,0.0,0.0,0.0,0.0,12.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.56,32.56,27.1,27.1,5.46,0.0,0.0,0.0,0.0,0.0,0.0,0.011,0.0,0.0,2.562,0.428,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.504,0.0,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-mechvent.xml,30.909,30.909,26.944,26.944,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.479,0.405,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-pv-battery.xml,27.673,3.225,26.774,2.326,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-pv.xml,26.796,2.349,25.897,1.449,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,21.091,21.091,18.322,18.322,2.769,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.0,2.083,0.316,2.919,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.117,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,21.217,21.217,15.344,15.344,5.874,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.282,0.367,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.154,0.0,0.0,0.146,0.197,0.817,1.129,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.775,0.0,4.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater.xml,29.68,29.68,16.273,16.273,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit.xml,26.796,26.796,25.897,25.897,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-whole-building.xml,217.516,217.516,217.516,217.516,0.0,0.0,0.0,0.0,0.0,0.0,34.288,0.0,0.0,0.0,22.669,0.0,55.567,0.0,0.0,14.641,0.0,1.364,0.0,0.0,0.0,0.0,12.716,0.0,0.0,1.912,2.192,0.0,9.172,0.0,12.693,50.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-2stories.xml,51.679,51.679,34.255,34.255,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,3.248,0.567,9.076,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-atticroof-cathedral.xml,98.436,98.436,36.921,36.921,61.515,0.0,0.0,0.0,0.0,0.0,0.0,0.802,0.0,0.0,4.989,0.937,9.084,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,43.006,43.006,29.52,29.52,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,2.655,0.44,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit.xml,43.006,43.006,29.52,29.52,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,2.655,0.44,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-combi-tankless-outside.xml,52.189,52.189,21.369,21.369,30.82,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-combi-tankless.xml,53.386,53.386,21.376,21.376,32.011,0.0,0.0,0.0,0.0,0.0,0.0,0.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.722,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater-2-speed.xml,31.609,31.609,31.609,31.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.111,0.697,6.833,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater-gshp.xml,38.101,38.101,38.101,38.101,0.0,0.0,0.0,0.0,0.0,0.0,5.809,0.592,0.0,0.0,2.996,0.975,6.591,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater-hpwh.xml,56.998,56.998,29.359,29.359,27.639,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,4.264,0.807,2.702,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater-tankless.xml,33.152,33.152,33.152,33.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,1.116,6.818,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater-var-speed.xml,30.774,30.774,30.774,30.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.719,0.271,6.816,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-desuperheater.xml,33.184,33.184,33.184,33.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.304,1.133,6.779,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-dwhr.xml,56.433,56.433,33.206,33.206,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-dse.xml,60.222,60.222,21.41,21.41,38.812,0.0,0.0,0.0,0.0,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.408,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-outside.xml,56.51,56.51,21.369,21.369,35.141,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-standbyloss.xml,55.344,55.344,21.371,21.371,33.974,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.153,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.068,0.0,13.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-with-solar-fraction.xml,47.29,47.29,21.374,21.374,25.916,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect.xml,55.102,55.102,21.372,21.372,33.73,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.327,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-jacket-electric.xml,58.595,58.595,35.152,35.152,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.136,0.775,8.716,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-jacket-gas.xml,64.578,64.578,26.562,26.562,38.016,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.233,0.798,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.817,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-jacket-hpwh.xml,56.923,56.923,29.251,29.251,27.672,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.724,0.678,3.263,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.063,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-jacket-indirect.xml,54.898,54.898,21.372,21.372,33.526,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.15,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,12.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-low-flow-fixtures.xml,58.484,58.484,35.257,35.257,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.793,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-multiple.xml,47.969,47.969,23.301,23.301,24.669,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,1.928,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.743,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-none.xml,47.774,47.774,24.165,24.165,23.609,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.074,0.761,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.0,0.0,0.0,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-demand-scheduled.xml,58.656,58.656,35.428,35.428,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-demand.xml,58.656,58.656,35.428,35.428,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-manual.xml,58.236,58.236,35.008,35.008,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.528,0.017,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-nocontrol.xml,73.385,73.385,50.157,50.157,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-temperature.xml,68.534,68.534,45.307,45.307,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,18.594,0.249,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-recirc-timer.xml,73.385,73.385,50.157,50.157,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-direct-evacuated-tube.xml,52.893,52.893,29.666,29.666,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.164,0.782,2.875,0.0,0.324,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-direct-flat-plate.xml,51.454,51.454,28.236,28.236,23.218,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.176,0.785,1.444,0.0,0.311,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-direct-ics.xml,52.967,52.967,29.739,29.739,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.169,0.783,2.938,0.0,0.327,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-fraction.xml,53.081,53.081,29.584,29.584,23.497,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.13,0.774,3.155,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-indirect-flat-plate.xml,51.179,51.179,28.318,28.318,22.861,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.274,0.809,1.413,0.0,0.306,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-solar-thermosyphon-flat-plate.xml,51.167,51.167,27.947,27.947,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.175,0.785,1.467,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-coal.xml,65.313,65.313,26.613,26.613,23.421,0.0,0.0,0.0,0.0,15.28,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-detailed-setpoints.xml,58.688,58.688,35.467,35.467,23.221,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.162,0.782,9.003,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-elec-uef.xml,58.731,58.731,35.556,35.556,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.167,0.783,9.086,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-gas-outside.xml,67.067,67.067,26.412,26.412,40.655,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,17.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-gas-uef-fhr.xml,64.984,64.984,26.577,26.577,38.407,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.247,0.801,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.696,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-gas-uef.xml,64.984,64.984,26.577,26.577,38.407,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.247,0.801,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.696,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-gas.xml,65.313,65.313,26.613,26.613,38.701,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-detailed-schedules.xml,56.862,56.862,28.407,28.407,28.455,0.0,0.0,0.0,0.0,0.0,0.0,0.469,0.0,0.0,3.661,0.664,2.486,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.061,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.724,56.724,28.222,28.222,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.641,0.659,2.326,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-outside.xml,56.773,56.773,33.131,33.131,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,6.72,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-uef.xml,56.724,56.724,28.222,28.222,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.641,0.659,2.326,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-with-solar-fraction.xml,52.514,52.514,27.508,27.508,25.006,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.977,0.738,1.247,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump-with-solar.xml,51.99,51.99,28.102,28.102,23.889,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.306,0.817,1.118,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-heat-pump.xml,56.959,56.959,29.384,29.384,27.575,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.718,0.677,3.404,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,57.976,57.976,35.001,35.001,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.192,0.789,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-model-type-stratified.xml,58.546,58.546,34.917,34.917,23.628,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.116,0.771,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-oil.xml,65.313,65.313,26.613,26.613,23.421,15.28,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,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.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tank-wood.xml,65.313,65.313,26.613,26.613,23.421,0.0,0.0,15.28,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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
+base-dhw-tankless-detailed-setpoints.xml,61.22,61.22,26.412,26.412,34.808,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-electric-outside.xml,59.322,59.322,35.68,35.68,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-electric-uef.xml,59.217,59.217,35.576,35.576,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.164,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-electric.xml,59.322,59.322,35.68,35.68,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-gas-uef.xml,59.71,59.71,26.412,26.412,33.299,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,9.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-gas-with-solar-fraction.xml,53.97,53.97,26.412,26.412,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-gas-with-solar.xml,51.66,51.66,26.835,26.835,24.825,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.214,0.794,0.0,0.0,0.304,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.274,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-gas.xml,61.244,61.244,26.412,26.412,34.832,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-tankless-propane.xml,61.244,61.244,26.412,26.412,23.642,0.0,11.19,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-2stories-garage.xml,66.272,66.272,40.516,40.516,25.757,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,6.177,1.234,8.97,0.0,0.0,5.266,0.142,0.373,0.0,0.0,0.0,0.0,2.086,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,10.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-2stories.xml,74.407,74.407,43.825,43.825,30.582,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,6.069,1.208,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-1.xml,54.97,54.97,30.239,30.239,24.731,0.0,0.0,0.0,0.0,0.0,0.0,0.408,0.0,0.0,3.926,0.726,5.472,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.645,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-2.xml,56.871,56.871,32.895,32.895,23.976,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.043,0.753,7.281,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.261,0.309,1.281,1.396,0.0,1.88,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-4.xml,60.512,60.512,38.025,38.025,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.282,0.81,10.708,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.376,0.421,1.744,1.662,0.0,2.351,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-5.xml,62.303,62.303,40.552,40.552,21.751,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.405,0.84,12.379,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.434,0.477,1.976,1.795,0.0,2.586,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-ceilingtypes.xml,75.042,75.042,36.053,36.053,38.989,0.0,0.0,0.0,0.0,0.0,0.0,0.643,0.0,0.0,4.422,0.845,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-floortypes.xml,67.575,67.575,28.946,28.946,38.63,0.0,0.0,0.0,0.0,0.0,0.0,0.637,0.0,0.0,3.51,0.619,9.213,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.051,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-garage.xml,59.661,59.661,33.997,33.997,25.664,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.023,0.521,9.117,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.705,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-ach-house-pressure.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-cfm-house-pressure.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-cfm50.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-ela.xml,66.189,66.189,35.495,35.495,30.693,0.0,0.0,0.0,0.0,0.0,0.0,0.506,0.0,0.0,4.083,0.76,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-flue.xml,60.081,60.081,35.477,35.477,24.604,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.144,0.777,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-natural-ach.xml,65.817,65.817,35.494,35.494,30.322,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.0,0.0,4.086,0.761,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-natural-cfm.xml,65.817,65.817,35.494,35.494,30.322,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.0,0.0,4.086,0.761,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-orientations.xml,58.929,58.929,35.454,35.454,23.475,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.139,0.776,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-overhangs.xml,58.843,58.843,35.317,35.317,23.526,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.028,0.75,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-rooftypes.xml,58.663,58.663,35.343,35.343,23.32,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.05,0.757,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-skylights-physical-properties.xml,61.128,61.128,36.529,36.529,24.599,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.994,0.975,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-skylights-shading.xml,59.83,59.83,35.523,35.523,24.308,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.184,0.786,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-skylights-storms.xml,59.163,59.163,36.197,36.197,22.966,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.745,0.918,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-skylights.xml,58.911,58.911,36.292,36.292,22.618,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.826,0.937,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-split-level.xml,40.983,40.983,29.121,29.121,11.862,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.0,3.804,0.701,9.407,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-thermal-mass.xml,58.51,58.51,35.425,35.425,23.085,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.12,0.773,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-walltypes.xml,75.66,75.66,34.353,34.353,41.307,0.0,0.0,0.0,0.0,0.0,0.0,0.681,0.0,0.0,3.011,0.525,9.02,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.05,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-natural-ventilation-availability.xml,57.722,57.722,34.42,34.42,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,3.319,0.572,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-none.xml,59.6,59.6,33.623,33.623,25.977,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,2.612,0.441,9.018,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-physical-properties.xml,66.439,66.439,35.602,35.602,30.837,0.0,0.0,0.0,0.0,0.0,0.0,0.509,0.0,0.0,4.17,0.778,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-shading-seasons.xml,58.63,58.63,35.505,35.505,23.126,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.183,0.787,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-shading.xml,58.487,58.487,33.128,33.128,25.359,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.0,2.238,0.338,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.045,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-enclosure-windows-storms.xml,59.712,59.712,34.922,34.922,24.79,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.693,0.673,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-ambient.xml,47.906,47.906,29.845,29.845,18.061,0.0,0.0,0.0,0.0,0.0,0.0,0.298,0.0,0.0,4.481,0.853,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-basement-garage.xml,52.747,52.747,32.156,32.156,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.152,0.778,9.248,0.0,0.0,3.404,0.142,0.277,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-belly-wing-no-skirt.xml,50.591,50.591,29.086,29.086,21.505,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.822,0.7,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.093,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-belly-wing-skirt.xml,50.207,50.207,29.094,29.094,21.113,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.0,3.832,0.703,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.094,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-complex.xml,77.802,77.802,36.754,36.754,41.048,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.962,0.971,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-conditioned-basement-slab-insulation-full.xml,55.986,55.986,35.977,35.977,20.009,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.603,0.888,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-conditioned-basement-slab-insulation.xml,57.567,57.567,35.674,35.674,21.894,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.336,0.823,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-conditioned-basement-wall-insulation.xml,57.5,57.5,35.054,35.054,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.832,0.701,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-conditioned-crawlspace.xml,47.443,47.443,28.55,28.55,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,3.429,0.615,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-multiple.xml,42.638,42.638,29.117,29.117,13.521,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.197,0.792,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.809,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-slab.xml,40.36,40.36,29.01,29.01,11.35,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.886,0.721,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-unconditioned-basement-above-grade.xml,43.687,43.687,29.189,29.189,14.499,0.0,0.0,0.0,0.0,0.0,0.0,0.239,0.0,0.0,4.278,0.811,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.748,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-unconditioned-basement-assembly-r.xml,41.112,41.112,28.642,28.642,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,3.86,0.713,9.195,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-unconditioned-basement-wall-insulation.xml,49.385,49.385,28.546,28.546,20.839,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,3.535,0.634,9.129,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.987,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-unconditioned-basement.xml,42.651,42.651,29.117,29.117,13.535,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.214,0.796,9.189,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.778,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-unvented-crawlspace.xml,40.939,40.939,29.571,29.571,11.368,0.0,0.0,0.0,0.0,0.0,0.0,0.188,0.0,0.0,4.251,0.808,9.295,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.112,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-vented-crawlspace-above-grade.xml,43.335,43.335,29.668,29.668,13.668,0.0,0.0,0.0,0.0,0.0,0.0,0.225,0.0,0.0,4.254,0.806,9.36,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.106,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-vented-crawlspace.xml,43.26,43.26,29.514,29.514,13.746,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.124,0.774,9.368,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.104,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-foundation-walkout-basement.xml,64.61,64.61,35.851,35.851,28.759,0.0,0.0,0.0,0.0,0.0,0.0,0.474,0.0,0.0,4.393,0.835,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,44.681,44.681,44.681,44.681,0.0,0.0,0.0,0.0,0.0,0.0,9.587,0.728,0.092,0.005,3.173,0.944,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.199,34.199,34.199,34.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.21,0.959,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.032,0.288,0.017,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.037,42.037,42.037,42.037,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.781,0.298,0.03,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.468,45.468,45.468,45.468,0.0,0.0,0.0,0.0,0.0,0.0,9.269,0.935,0.912,0.051,3.196,0.955,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.563,45.563,45.563,45.563,0.0,0.0,0.0,0.0,0.0,0.0,9.795,1.032,0.288,0.017,3.292,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.032,0.288,0.017,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-2-speed.xml,41.404,41.404,41.404,41.404,0.0,0.0,0.0,0.0,0.0,0.0,7.559,0.601,0.276,0.012,2.208,0.596,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.281,40.281,40.281,40.281,0.0,0.0,0.0,0.0,0.0,0.0,7.976,0.073,0.0,0.0,1.984,0.097,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.495,53.495,38.56,38.56,14.935,0.0,0.0,0.0,0.0,0.0,5.236,0.366,0.0,0.056,2.309,0.442,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.466,56.466,37.406,37.406,19.06,0.0,0.0,0.0,0.0,0.0,4.169,0.245,0.0,0.072,2.328,0.444,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.603,53.603,38.663,38.663,14.939,0.0,0.0,0.0,0.0,0.0,5.314,0.371,0.0,0.056,2.328,0.444,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,51.479,51.479,37.045,37.045,14.434,0.0,0.0,0.0,0.0,0.0,4.724,0.033,0.0,0.052,1.986,0.099,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.698,53.698,38.829,38.829,14.868,0.0,0.0,0.0,0.0,0.0,5.099,0.35,0.0,0.448,2.337,0.444,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,42.688,42.688,42.688,42.688,0.0,0.0,0.0,0.0,0.0,0.0,8.975,0.573,0.233,0.009,2.601,0.145,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.432,42.432,42.432,42.432,0.0,0.0,0.0,0.0,0.0,0.0,8.963,0.53,0.08,0.003,2.59,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.376,42.376,42.376,42.376,0.0,0.0,0.0,0.0,0.0,0.0,9.02,0.527,0.082,0.003,2.486,0.106,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.046,50.046,50.046,50.046,0.0,0.0,0.0,0.0,0.0,0.0,9.942,0.736,5.75,0.329,3.038,0.099,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.334,42.334,42.334,42.334,0.0,0.0,0.0,0.0,0.0,0.0,8.981,0.529,0.079,0.003,2.483,0.107,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,40.985,40.985,40.985,40.985,0.0,0.0,0.0,0.0,0.0,0.0,8.101,0.295,0.239,0.01,2.068,0.118,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.206,42.206,42.206,42.206,0.0,0.0,0.0,0.0,0.0,0.0,9.568,0.166,0.032,0.002,2.172,0.115,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,40.743,40.743,40.743,40.743,0.0,0.0,0.0,0.0,0.0,0.0,7.962,0.271,0.21,0.01,2.023,0.117,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-var-speed.xml,40.908,40.908,40.908,40.908,0.0,0.0,0.0,0.0,0.0,0.0,8.068,0.266,0.278,0.013,2.019,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-autosize-sizing-controls.xml,49.728,49.728,42.151,42.151,7.577,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.045,0.452,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-autosize.xml,59.352,59.352,35.56,35.56,23.791,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.219,0.797,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-coal-only.xml,50.537,50.537,30.458,30.458,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-elec-only.xml,49.292,49.292,49.292,49.292,0.0,0.0,0.0,0.0,0.0,0.0,18.955,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-gas-central-ac-1-speed.xml,56.009,56.009,35.658,35.658,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,4.24,1.111,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-gas-only-pilot.xml,55.486,55.486,30.36,30.36,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-gas-only.xml,50.53,50.53,30.36,30.36,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-oil-only.xml,50.537,50.537,30.458,30.458,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-propane-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-1-speed-autosize-factor.xml,34.979,34.979,34.979,34.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.933,1.015,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-1-speed-seer2.xml,35.239,35.239,35.239,35.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,1.079,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-1-speed.xml,35.251,35.251,35.251,35.251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.142,1.079,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-2-speed.xml,33.704,33.704,33.704,33.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.008,0.666,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.206,34.206,34.206,34.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.832,0.343,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.288,33.288,33.288,33.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.148,0.11,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,32.92,32.92,32.92,32.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.639,0.251,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-var-speed.xml,32.916,32.916,32.916,32.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.636,0.25,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.427,47.427,47.427,47.427,0.0,0.0,0.0,0.0,0.0,0.0,9.798,1.796,0.299,0.03,4.24,1.111,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.084,52.084,41.382,41.382,10.702,0.0,0.0,0.0,0.0,0.0,5.489,0.519,0.0,0.931,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.858,54.858,40.342,40.342,14.516,0.0,0.0,0.0,0.0,0.0,4.141,0.366,0.0,1.391,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.237,52.237,37.319,37.319,14.918,0.0,0.0,0.0,0.0,0.0,3.12,0.2,0.0,1.043,2.208,0.596,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,51.999,51.999,36.95,36.95,15.049,0.0,0.0,0.0,0.0,0.0,3.489,0.04,0.0,1.137,2.019,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.622,47.622,35.903,35.903,11.719,0.0,0.0,0.0,0.0,0.0,3.073,0.013,0.0,0.545,2.076,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-area-fractions.xml,93.747,93.747,46.171,46.171,47.576,0.0,0.0,0.0,0.0,0.0,0.0,0.62,0.0,0.0,7.796,1.605,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-area-multipliers.xml,57.919,57.919,35.357,35.357,22.562,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.072,0.761,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-buried.xml,56.241,56.241,35.128,35.128,21.112,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.0,3.904,0.724,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-defaults.xml,55.658,55.658,40.532,40.532,15.126,0.0,0.0,0.0,0.0,0.0,4.655,0.393,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-effective-rvalue.xml,58.7,58.7,35.477,35.477,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-leakage-cfm50.xml,58.781,58.781,35.491,35.491,23.29,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.172,0.783,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-leakage-percent.xml,59.951,59.951,35.667,35.667,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.301,0.813,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-elec-resistance-only.xml,47.263,47.263,47.263,47.263,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-evap-cooler-furnace-gas.xml,55.364,55.364,31.596,31.596,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.826,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-evap-cooler-only-ducted.xml,30.897,30.897,30.897,30.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.867,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-evap-cooler-only.xml,30.833,30.833,30.833,30.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-fireplace-wood-only.xml,52.84,52.84,30.205,30.205,0.0,0.0,0.0,22.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-floor-furnace-propane-only.xml,57.794,57.794,30.205,30.205,0.0,0.0,27.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-coal-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,0.0,0.0,0.0,23.561,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-elec-central-ac-1-speed.xml,56.847,56.847,56.847,56.847,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-elec-only.xml,52.938,52.938,52.938,52.938,0.0,0.0,0.0,0.0,0.0,0.0,22.119,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-central-ac-2-speed.xml,57.463,57.463,34.236,34.236,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,3.056,0.645,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,56.719,56.719,33.492,33.492,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,2.692,0.265,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-central-ac-var-speed.xml,56.711,56.711,33.484,33.484,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,2.688,0.261,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only-autosize-factor.xml,52.964,52.964,30.783,30.783,22.181,0.0,0.0,0.0,0.0,0.0,0.0,0.576,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only-detailed-setpoints.xml,38.639,38.639,30.316,30.316,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only-pilot.xml,59.275,59.275,30.819,30.819,28.456,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only.xml,54.38,54.38,30.819,30.819,23.561,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-room-ac.xml,59.871,59.871,36.102,36.102,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-oil-only.xml,54.38,54.38,30.819,30.819,0.0,23.561,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-propane-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,23.561,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-wood-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,0.0,23.561,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-x3-dse.xml,59.43,59.43,36.496,36.496,22.934,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.761,33.761,33.761,33.761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.889,0.842,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,40.831,40.831,40.831,40.831,0.0,0.0,0.0,0.0,0.0,0.0,6.435,0.645,0.0,0.0,2.658,0.945,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ground-to-air-heat-pump-heating-only.xml,36.915,36.915,36.915,36.915,0.0,0.0,0.0,0.0,0.0,0.0,5.803,0.906,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ground-to-air-heat-pump.xml,40.254,40.254,40.254,40.254,0.0,0.0,0.0,0.0,0.0,0.0,5.708,0.582,0.0,0.0,2.883,0.929,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.619,48.619,48.619,48.619,0.0,0.0,0.0,0.0,0.0,0.0,12.439,0.713,0.613,0.019,4.021,0.662,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.049,44.049,44.049,44.049,0.0,0.0,0.0,0.0,0.0,0.0,9.458,0.584,0.551,0.017,2.74,0.546,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.711,45.711,45.711,45.711,0.0,0.0,0.0,0.0,0.0,0.0,11.293,0.541,0.263,0.008,3.294,0.161,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,44.003,44.003,44.003,44.003,0.0,0.0,0.0,0.0,0.0,0.0,10.227,0.357,0.571,0.02,2.532,0.145,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.655,60.655,36.21,36.21,24.445,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,5.042,0.721,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.193,59.193,34.753,34.753,24.441,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,3.699,0.609,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.499,58.499,34.059,34.059,24.44,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,3.262,0.351,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-furnace-gas-only.xml,55.779,55.779,30.683,30.683,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-ground-to-air-heat-pump.xml,42.473,42.473,42.473,42.473,0.0,0.0,0.0,0.0,0.0,0.0,7.367,0.594,0.0,0.0,3.474,0.885,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.466,33.466,33.466,33.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.244,0.191,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.552,41.552,41.552,41.552,0.0,0.0,0.0,0.0,0.0,0.0,8.439,0.22,0.133,0.005,2.512,0.091,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-air-conditioner-only-ducted.xml,32.826,32.826,32.826,32.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.728,0.068,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.216,33.216,33.216,33.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.133,0.052,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.877,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.094,32.094,32.094,32.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.02,0.044,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,41.101,41.101,41.101,41.101,0.0,0.0,0.0,0.0,0.0,0.0,7.61,0.234,0.0,0.0,3.021,0.085,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.55,40.55,40.55,40.55,0.0,0.0,0.0,0.0,0.0,0.0,7.324,0.157,0.0,0.0,2.882,0.035,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,37.189,37.189,37.189,37.189,0.0,0.0,0.0,0.0,0.0,0.0,6.764,0.164,0.052,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.148,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.248,37.248,37.248,37.248,0.0,0.0,0.0,0.0,0.0,0.0,6.846,0.134,0.059,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,39.267,39.267,39.267,39.267,0.0,0.0,0.0,0.0,0.0,0.0,6.837,0.102,0.054,0.001,2.075,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted.xml,39.337,39.337,39.337,39.337,0.0,0.0,0.0,0.0,0.0,0.0,6.918,0.084,0.061,0.002,2.076,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.078,39.078,39.078,39.078,0.0,0.0,0.0,0.0,0.0,0.0,5.983,0.131,0.393,0.0,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.849,45.849,36.508,36.508,9.341,0.0,0.0,0.0,0.0,0.0,3.616,0.049,0.0,0.282,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.532,45.532,36.311,36.311,9.221,0.0,0.0,0.0,0.0,0.0,3.418,0.044,0.0,0.278,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.951,48.951,36.24,36.24,0.0,12.711,0.0,0.0,0.0,0.0,3.612,0.066,0.0,0.0,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.901,38.901,38.901,38.901,0.0,0.0,0.0,0.0,0.0,0.0,6.784,0.073,0.0,0.0,1.886,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.04,0.0,0.0,1.887,0.003,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ductless.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-multiple.xml,67.866,67.866,52.604,52.604,7.554,3.811,3.896,0.0,0.0,0.0,14.492,0.932,0.277,0.011,6.199,0.543,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-none.xml,20.452,20.452,20.452,20.452,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.542,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ptac-with-heating-electricity.xml,51.595,51.595,51.595,51.595,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ptac-with-heating-natural-gas.xml,55.897,55.897,34.387,34.387,21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ptac.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-pthp-heating-capacity-17f.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-pthp.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-only-33percent.xml,31.83,31.83,31.83,31.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-only-ceer.xml,35.226,35.226,35.226,35.226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.195,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-only-detailed-setpoints.xml,34.023,34.023,34.023,34.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.974,0.0,9.054,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.929,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-only.xml,35.216,35.216,35.216,35.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-with-heating.xml,52.692,52.692,52.692,52.692,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-room-ac-with-reverse-cycle.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-seasons.xml,58.48,58.48,35.436,35.436,23.044,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.131,0.774,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-setpoints-daily-schedules.xml,57.514,57.514,34.887,34.887,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.682,0.685,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-setpoints-daily-setbacks.xml,56.954,56.954,35.032,35.032,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,3.814,0.711,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-setpoints.xml,41.703,41.703,33.546,33.546,8.157,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,2.866,0.474,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-space-heater-gas-only.xml,47.262,47.262,30.207,30.207,17.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-stove-oil-only.xml,52.823,52.823,30.273,30.273,0.0,22.55,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-stove-wood-pellets-only.xml,52.823,52.823,30.273,30.273,0.0,0.0,0.0,0.0,22.55,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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
+base-hvac-undersized.xml,48.274,48.274,32.76,32.76,15.514,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2.062,0.342,9.031,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.01,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-wall-furnace-elec-only.xml,47.61,47.61,47.61,47.61,0.0,0.0,0.0,0.0,0.0,0.0,17.404,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv
new file mode 100644
index 0000000000..b79243f9d2
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv
@@ -0,0 +1,311 @@
+HPXML,HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)
+base-appliances-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-dehumidifier-ief-portable.xml,25.88,98.42,24000.0,24000.0,0.0,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-appliances-dehumidifier-ief-whole-home.xml,25.88,98.42,24000.0,24000.0,0.0,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-appliances-dehumidifier-multiple.xml,25.88,98.42,24000.0,24000.0,0.0,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-appliances-dehumidifier.xml,25.88,98.42,24000.0,24000.0,0.0,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-appliances-freezer-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-appliances-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-modified.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-none.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-refrigerator-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-appliances-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-atticroof-cathedral.xml,6.8,91.76,36000.0,24000.0,0.0,30447.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,2408.0,0.0,7063.0,15723.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,948.0,3320.0,0.0,0.0,0.0,0.0
+base-atticroof-conditioned.xml,6.8,91.76,36000.0,24000.0,0.0,32083.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,2408.0,724.0,6718.0,19378.0,62.0,12260.0,0.0,207.0,1211.0,650.0,0.0,0.0,764.0,904.0,3320.0,0.0,0.0,0.0,0.0
+base-atticroof-flat.xml,6.8,91.76,36000.0,24000.0,0.0,25336.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,2408.0,0.0,4699.0,12331.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-atticroof-radiant-barrier-ceiling.xml,25.88,98.42,24000.0,24000.0,0.0,25771.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,24753.0,63.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,12169.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-atticroof-radiant-barrier.xml,25.88,98.42,24000.0,24000.0,0.0,25771.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,21651.0,65.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,9065.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-atticroof-unvented-insulated-roof.xml,6.8,91.76,36000.0,24000.0,0.0,31048.0,4828.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,4190.0,4699.0,19534.0,1877.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-atticroof-vented.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16544.0,3822.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,6.8,91.76,12000.0,12000.0,0.0,12374.0,5661.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,6.8,91.76,0.0,0.0,0.0,7340.0,0.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,8393.0,0.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,12354.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,9965.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,6.8,91.76,12000.0,12000.0,0.0,14621.0,6781.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1558.0,10083.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,6.8,91.76,12000.0,12000.0,0.0,8360.0,3676.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,6.8,91.76,12000.0,12000.0,0.0,7916.0,3457.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1558.0,6281.0,1327.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-infil-compartmentalization-test.xml,6.8,91.76,12000.0,12000.0,0.0,5615.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1261.0,7014.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,169.0,3320.0,621.0,0.0,-179.0,800.0
+base-bldgtype-mf-unit-residents-1.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,6.8,91.76,5911.0,8179.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,6.8,91.76,8673.0,9205.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,6.8,91.76,5911.0,8179.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,6.8,91.76,28568.0,9205.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,6.8,91.76,28568.0,9205.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,6.8,91.76,8673.0,0.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,6.8,91.76,7083.0,0.0,0.0,7083.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,2729.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,6.8,91.76,28568.0,0.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,6.8,91.76,0.0,8179.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,6.8,91.76,0.0,9205.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,6.8,91.76,0.0,8179.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,6.8,91.76,0.0,9205.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,6.8,91.76,0.0,9205.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-generator.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,6.8,91.76,12000.0,12000.0,12000.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-laundry-room.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-mechvent-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,9336.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4983.0,8045.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1201.0,3320.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,6.8,91.76,12000.0,12000.0,0.0,6306.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1953.0,7113.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,268.0,3320.0,2.0,0.0,-798.0,800.0
+base-bldgtype-mf-unit-shared-mechvent.xml,6.8,91.76,12000.0,12000.0,0.0,7909.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3556.0,7599.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,754.0,3320.0,2.0,0.0,-798.0,800.0
+base-bldgtype-mf-unit-shared-pv-battery.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-pv.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,6364.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,2630.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-water-heater-recirc.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit-shared-water-heater.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-unit.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-bldgtype-mf-whole-building.xml,6.8,91.76,72000.0,72000.0,0.0,88106.0,0.0,18018.0,0.0,1722.0,10488.0,0.0,2376.0,0.0,3860.0,51642.0,53028.0,0.0,21576.0,0.0,618.0,1104.0,0.0,630.0,0.0,2244.0,6930.0,19920.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,28224.0,7460.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1879.0,1447.0,6082.0,17772.0,5036.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1529.0,819.0,3320.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-atticroof-cathedral.xml,6.8,91.76,48000.0,36000.0,0.0,43862.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1879.0,0.0,6082.0,24069.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,819.0,3320.0,0.0,0.0,0.0,0.0
+base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,6.8,91.76,24000.0,24000.0,0.0,21856.0,8165.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14857.0,5947.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,419.0,3320.0,356.0,0.0,-444.0,800.0
+base-bldgtype-sfa-unit.xml,6.8,91.76,24000.0,24000.0,0.0,21857.0,8165.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14857.0,5947.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,420.0,3320.0,356.0,0.0,-444.0,800.0
+base-dhw-combi-tankless-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-combi-tankless.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater-gshp.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater-tankless.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-desuperheater.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-dwhr.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect-detailed-setpoints.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect-dse.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect-standbyloss.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect-with-solar-fraction.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-jacket-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-jacket-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-jacket-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-jacket-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-low-flow-fixtures.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-multiple.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-none.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-demand-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-demand.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-manual.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-nocontrol.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-temperature.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-recirc-timer.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-direct-evacuated-tube.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-direct-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-direct-ics.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-indirect-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-solar-thermosyphon-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-elec-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-gas-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-gas-uef-fhr.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-detailed-schedules.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-heat-pump.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-model-type-stratified.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tank-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-electric-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-electric-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-gas-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-gas-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-dhw-tankless-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-2stories-garage.xml,6.8,91.76,48000.0,36000.0,0.0,43837.0,7647.0,15016.0,0.0,575.0,9018.0,0.0,315.0,1768.0,2171.0,7327.0,26103.0,5012.0,14074.0,0.0,207.0,312.0,0.0,-101.0,0.0,2293.0,986.0,3320.0,0.0,0.0,0.0,0.0
+base-enclosure-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,46455.0,7678.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,26685.0,5018.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-1.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19314.0,6021.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,2860.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-2.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19550.0,6027.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3090.0,0.0,0.0,0.0,0.0
+base-enclosure-beds-4.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20060.0,6077.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3550.0,332.0,0.0,-668.0,1000.0
+base-enclosure-beds-5.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20304.0,6091.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3780.0,532.0,0.0,-668.0,1200.0
+base-enclosure-ceilingtypes.xml,6.8,91.76,36000.0,24000.0,0.0,45060.0,8866.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,14165.0,4699.0,32603.0,6180.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,14963.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-floortypes.xml,6.8,91.76,36000.0,24000.0,0.0,37680.0,8722.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2341.0,21015.0,6097.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-enclosure-garage.xml,6.8,91.76,36000.0,24000.0,0.0,28888.0,6755.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12674.0,523.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-infil-ach-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32809.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4697.0,19793.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,630.0,3320.0,133.0,0.0,-667.0,800.0
+base-enclosure-infil-cfm-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-infil-cfm50.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-infil-ela.xml,6.8,91.76,36000.0,24000.0,0.0,38021.0,8729.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9790.0,20501.0,6065.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1314.0,3320.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-flue.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-infil-natural-ach.xml,6.8,91.76,36000.0,24000.0,0.0,37772.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20468.0,6064.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0
+base-enclosure-infil-natural-cfm.xml,6.8,91.76,36000.0,24000.0,0.0,37772.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20468.0,6064.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0
+base-enclosure-orientations.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-overhangs.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-rooftypes.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-skylights-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,35156.0,8662.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24438.0,6113.0,7037.0,4572.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-skylights-shading.xml,6.8,91.76,36000.0,24000.0,0.0,33454.0,8628.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20557.0,6073.0,7037.0,732.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-skylights-storms.xml,6.8,91.76,36000.0,24000.0,0.0,33526.0,8630.0,7508.0,696.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22620.0,6082.0,7037.0,2785.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-skylights.xml,6.8,91.76,36000.0,24000.0,0.0,33454.0,8628.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22840.0,6086.0,7037.0,3001.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-split-level.xml,6.8,91.76,36000.0,24000.0,0.0,29086.0,1686.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2716.0,13454.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,365.0,3320.0,414.0,0.0,-386.0,800.0
+base-enclosure-thermal-mass.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-walltypes.xml,6.8,91.76,36000.0,24000.0,0.0,35821.0,8678.0,918.0,0.0,575.0,16373.0,0.0,0.0,2408.0,2171.0,4699.0,15052.0,5936.0,979.0,0.0,207.0,1686.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-natural-ventilation-availability.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-none.xml,6.8,91.76,36000.0,24000.0,0.0,26058.0,8377.0,0.0,0.0,575.0,7829.0,0.0,0.0,2408.0,2171.0,4699.0,12647.0,5827.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,39235.0,8755.0,13788.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22192.0,6073.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-shading-seasons.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-shading.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15690.0,5940.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-enclosure-windows-storms.xml,6.8,91.76,36000.0,24000.0,0.0,31959.0,8588.0,6680.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18533.0,6009.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-foundation-ambient.xml,6.8,91.76,36000.0,24000.0,0.0,27795.0,8439.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2341.0,19975.0,6084.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-basement-garage.xml,6.8,91.76,36000.0,24000.0,0.0,31513.0,8575.0,7508.0,0.0,603.0,7269.0,0.0,318.0,1768.0,2171.0,3301.0,19361.0,6043.0,7037.0,0.0,198.0,128.0,0.0,-102.0,0.0,2293.0,443.0,3320.0,331.0,0.0,-469.0,800.0
+base-foundation-belly-wing-no-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-belly-wing-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-complex.xml,6.8,91.76,36000.0,24000.0,0.0,42690.0,8820.0,7508.0,0.0,575.0,15887.0,0.0,0.0,3031.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-foundation-conditioned-basement-slab-insulation-full.xml,6.8,91.76,36000.0,24000.0,0.0,32068.0,8591.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,32068.0,8591.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,36031.0,8683.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22204.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3519.0,13595.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,472.0,3320.0,300.0,0.0,-500.0,800.0
+base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23230.0,4898.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2341.0,14574.0,233.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28709.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2341.0,13403.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23205.0,4907.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2341.0,14575.0,243.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21026.0,4847.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2341.0,14021.0,251.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-unconditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,24287.0,2046.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2341.0,15378.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-unconditioned-basement.xml,6.8,91.76,36000.0,24000.0,0.0,23246.0,4908.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2341.0,14586.0,243.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-unvented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22014.0,5793.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2341.0,15463.0,1681.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-vented-crawlspace-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,24649.0,7601.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2341.0,16193.0,2192.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-vented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,24332.0,7292.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2341.0,16104.0,2105.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
+base-foundation-walkout-basement.xml,6.8,91.76,36000.0,24000.0,0.0,34792.0,8652.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2885.0,2171.0,6082.0,20199.0,6061.0,7234.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,819.0,3320.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,6.8,91.76,44407.0,53923.0,28548.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,6.8,91.76,68361.0,68361.0,0.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,6.8,91.76,18000.0,18000.0,60000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,6.8,91.76,18000.0,18000.0,60000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,6.8,91.76,18000.0,18000.0,60000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,6.8,91.76,44407.0,53923.0,60000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,18000.0,18000.0,60000.0,40331.0,16130.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,6.8,91.76,31719.0,31719.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,6.8,91.76,72000.0,72000.0,72000.0,38248.0,14048.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,32181.0,18428.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-air-to-air-heat-pump-var-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-autosize-sizing-controls.xml,0.0,100.0,31990.0,31130.0,0.0,31990.0,9074.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.0,2061.0,4402.0,24018.0,6673.0,7422.0,0.0,318.0,951.0,0.0,0.0,0.0,2714.0,790.0,5150.0,2353.0,420.0,733.0,1200.0
+base-hvac-autosize.xml,6.8,91.76,32811.0,21848.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-coal-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-gas-central-ac-1-speed.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-gas-only-pilot.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-oil-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-propane-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-boiler-wood-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-1-speed-autosize-factor.xml,6.8,91.76,0.0,37142.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-1-speed-seer2.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-1-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,6.8,91.76,0.0,20969.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-var-speed-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-only-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,6.8,91.76,36000.0,24000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dse.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-area-fractions.xml,6.8,91.76,48000.0,36000.0,0.0,72022.0,33245.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,86666.0,64999.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0
+base-hvac-ducts-area-multipliers.xml,6.8,91.76,36000.0,24000.0,0.0,32023.0,7823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19430.0,5678.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-buried.xml,6.8,91.76,36000.0,24000.0,0.0,29178.0,4978.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16405.0,2652.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-defaults.xml,6.8,91.76,42344.0,24000.0,0.0,29966.0,4589.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-effective-rvalue.xml,6.8,91.76,36000.0,24000.0,0.0,32806.0,8606.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19789.0,6036.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-leakage-cfm50.xml,6.8,91.76,36000.0,24000.0,0.0,35063.0,10863.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21981.0,8228.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ducts-leakage-percent.xml,6.8,91.76,36000.0,24000.0,0.0,33320.0,9120.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22475.0,8722.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-elec-resistance-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-evap-cooler-furnace-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-evap-cooler-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16243.0,2490.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-evap-cooler-only.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-fireplace-wood-only.xml,6.8,91.76,36000.0,0.0,0.0,25377.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-floor-furnace-propane-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-coal-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-elec-central-ac-1-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-central-ac-2-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-central-ac-var-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-only-autosize-factor.xml,6.8,91.76,45936.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-only-detailed-setpoints.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-only-pilot.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-gas-room-ac.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-oil-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-propane-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-wood-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-furnace-x3-dse.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ground-to-air-heat-pump-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,6.8,91.76,36000.0,36000.0,36000.0,33134.0,7548.0,7508.0,0.0,575.0,7249.0,0.0,0.0,3384.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ground-to-air-heat-pump-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ground-to-air-heat-pump.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-furnace-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-ground-to-air-heat-pump.xml,6.8,91.76,36000.0,36000.0,36000.0,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-install-quality-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,6.8,91.76,0.0,14890.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-air-conditioner-only-ductless.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,6.8,91.76,26743.0,26743.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,6.8,91.76,36000.0,0.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,6.8,91.76,18000.0,18000.0,60000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,6.8,91.76,18000.0,18000.0,60000.0,25150.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,6.8,91.76,18000.0,18000.0,60000.0,27132.0,2932.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,6.8,91.76,18000.0,18000.0,60000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,6.8,91.76,24200.0,24200.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,6.8,91.76,36000.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,6.8,91.76,36000.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-mini-split-heat-pump-ductless.xml,6.8,91.76,36000.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-multiple.xml,6.8,91.76,59200.0,36799.2,10236.0,37072.0,12872.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24874.0,11121.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-none.xml,63.32,89.06,0.0,0.0,0.0,2829.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,220.0,13263.0,0.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,306.0,3320.0,1259.0,0.0,459.0,800.0
+base-hvac-ptac-with-heating-electricity.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ptac-with-heating-natural-gas.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-ptac.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-pthp-heating-capacity-17f.xml,6.8,91.76,36000.0,36000.0,36000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-pthp.xml,6.8,91.76,36000.0,36000.0,36000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-only-33percent.xml,6.8,91.76,0.0,8000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-only-ceer.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-only-detailed-setpoints.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-only.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-with-heating.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-room-ac-with-reverse-cycle.xml,6.8,91.76,36000.0,36000.0,36000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-seasons.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-setpoints-daily-schedules.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-setpoints-daily-setbacks.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-space-heater-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-stove-oil-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-stove-wood-pellets-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-undersized.xml,6.8,91.76,3600.0,2400.0,0.0,29463.0,5263.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18152.0,4399.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-hvac-wall-furnace-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv
new file mode 100644
index 0000000000..172e0a5710
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv
@@ -0,0 +1,311 @@
+HPXML,Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu)
+base-appliances-coal.xml,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02
+base-appliances-dehumidifier-ief-portable.xml,1.608,0.0,30.77,6.557,0.574,0.0,0.0,0.0,1.741,1.627,0.0,0.0,0.387,4.867,-5.12,0.0,0.0,0.0,1.248,-0.399,1.057,0.236,0.398,0.0,0.044,-4.004,-0.794,0.0,0.554,0.005,0.0,0.0,0.212,2.876,17.051,0.0,0.0,0.0,1.899,-0.394,-0.201,-2.216,-0.082,0.0,0.354,8.979,1.852
+base-appliances-dehumidifier-ief-whole-home.xml,1.579,0.0,30.724,6.557,0.574,0.0,0.0,0.0,1.758,1.64,0.0,0.0,0.391,4.905,-5.164,0.0,0.0,0.0,1.264,-0.401,1.065,0.254,0.401,0.0,0.043,-4.078,-0.801,0.0,0.57,0.018,0.0,0.0,0.216,2.912,17.007,0.0,0.0,0.0,1.914,-0.396,-0.192,-2.194,-0.079,0.0,0.354,8.898,1.844
+base-appliances-dehumidifier-multiple.xml,1.649,0.0,30.727,6.557,0.574,0.0,0.0,0.0,1.732,1.62,0.0,0.0,0.387,4.865,-5.106,0.0,0.0,0.0,1.223,-0.409,1.056,0.237,0.397,0.0,0.045,-3.908,-0.794,0.0,0.55,0.003,0.0,0.0,0.213,2.887,17.064,0.0,0.0,0.0,1.888,-0.404,-0.199,-2.199,-0.082,0.0,0.354,8.945,1.851
+base-appliances-dehumidifier.xml,1.596,0.0,30.7,6.557,0.574,0.0,0.0,0.0,1.763,1.645,0.0,0.0,0.393,4.917,-5.187,0.0,0.0,0.0,1.262,-0.405,1.067,0.258,0.402,0.0,0.044,-4.056,-0.805,0.0,0.578,0.025,0.0,0.0,0.218,2.933,16.984,0.0,0.0,0.0,1.92,-0.399,-0.188,-2.188,-0.077,0.0,0.354,8.864,1.841
+base-appliances-freezer-temperature-dependent-schedule.xml,21.122,0.0,14.095,9.071,0.614,0.0,0.0,0.0,3.556,3.644,0.513,7.524,0.631,10.101,-12.69,0.0,0.0,0.0,8.311,-0.066,4.935,0.0,0.728,0.0,4.479,-8.39,-2.488,0.0,-0.052,-0.453,-0.05,2.709,-0.023,-1.37,11.724,0.0,0.0,0.0,-6.301,-0.062,-1.13,-3.868,-0.163,0.0,2.83,8.469,2.019
+base-appliances-gas.xml,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02
+base-appliances-modified.xml,20.873,0.0,14.066,9.633,0.614,0.0,0.0,0.0,3.556,3.643,0.513,7.525,0.631,10.107,-12.67,0.0,0.0,0.0,8.312,-0.072,5.465,0.0,0.0,0.0,4.435,-8.421,-2.487,0.0,-0.056,-0.456,-0.051,2.705,-0.023,-1.37,11.743,0.0,0.0,0.0,-6.31,-0.068,-1.273,-3.864,0.0,0.0,2.829,8.42,2.021
+base-appliances-none.xml,23.34,0.0,12.289,7.75,0.616,0.0,0.0,0.0,3.52,3.621,0.509,7.456,0.627,10.045,-12.705,0.0,0.0,0.0,8.234,-0.065,5.462,0.0,0.0,0.0,4.902,-6.091,-2.491,0.0,0.011,-0.404,-0.043,2.854,-0.01,-1.212,11.708,0.0,0.0,0.0,-6.068,-0.06,-1.225,-3.552,0.0,0.0,2.529,5.921,2.016
+base-appliances-oil.xml,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02
+base-appliances-propane.xml,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02
+base-appliances-refrigerator-temperature-dependent-schedule.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-appliances-wood.xml,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02
+base-atticroof-cathedral.xml,25.005,0.0,13.25,9.071,0.616,0.0,0.0,6.774,0.0,4.233,0.513,7.48,0.634,12.699,-15.652,0.0,0.0,0.0,8.32,-0.094,9.33,0.0,0.729,0.0,0.0,-7.833,-2.496,0.175,0.0,-0.482,-0.045,2.788,-0.012,-1.106,15.648,0.0,0.0,0.0,-6.288,-0.069,-2.029,-4.694,-0.154,0.0,0.0,7.745,2.012
+base-atticroof-conditioned.xml,22.375,0.0,16.44,9.019,0.614,0.0,0.0,4.565,1.167,5.562,0.519,7.664,0.637,14.496,-17.102,0.0,0.0,0.0,8.521,-0.089,7.153,0.0,0.731,0.0,0.288,-8.985,-3.17,0.007,0.021,-0.563,-0.053,2.687,-0.028,-1.671,18.202,0.0,0.0,0.0,-6.373,-0.083,-1.663,-5.274,-0.165,0.0,0.096,8.989,2.578
+base-atticroof-flat.xml,19.226,0.0,11.319,9.071,0.616,0.0,0.0,6.035,0.0,3.612,0.508,7.441,0.624,10.017,-12.688,0.0,0.0,0.0,8.192,-0.08,4.799,0.0,0.726,0.0,0.0,-7.799,-2.489,0.324,0.0,-0.434,-0.048,2.771,-0.018,-1.311,11.72,0.0,0.0,0.0,-6.201,-0.055,-1.126,-3.734,-0.16,0.0,0.0,7.781,2.018
+base-atticroof-radiant-barrier-ceiling.xml,4.82,0.0,33.352,6.557,0.582,0.0,0.0,0.0,7.07,1.549,0.0,0.0,0.334,4.333,-6.058,0.0,0.0,0.0,0.631,-0.423,1.025,0.0,0.401,0.0,0.129,-3.502,-0.871,0.0,3.82,0.175,0.0,0.0,0.218,3.049,16.138,0.0,0.0,0.0,2.051,-0.414,-0.088,-1.995,-0.036,0.0,0.39,8.571,1.775
+base-atticroof-radiant-barrier.xml,4.138,0.0,32.022,6.557,0.581,0.0,0.0,0.0,5.95,1.569,0.0,0.0,0.333,4.335,-5.943,0.0,0.0,0.0,0.809,-0.367,1.016,0.0,0.396,0.0,0.111,-3.438,-0.855,0.0,2.401,0.164,0.0,0.0,0.21,2.973,16.228,0.0,0.0,0.0,2.136,-0.359,-0.124,-2.068,-0.046,0.0,0.375,8.638,1.791
+base-atticroof-unvented-insulated-roof.xml,21.935,0.0,11.649,9.071,0.616,0.0,0.0,0.0,5.682,3.62,0.509,7.455,0.626,10.045,-12.698,0.0,0.0,0.0,8.249,-0.07,4.934,0.0,0.728,0.0,2.837,-7.81,-2.491,0.0,-1.395,-0.4,-0.043,2.868,-0.009,-1.202,11.715,0.0,0.0,0.0,-6.03,-0.061,-1.084,-3.517,-0.157,0.0,1.39,7.768,2.016
+base-atticroof-vented.xml,22.348,0.0,12.301,9.071,0.803,0.0,0.0,0.0,3.887,3.633,0.511,7.49,0.629,10.077,-12.698,0.0,0.0,0.0,8.276,-0.066,5.148,0.0,0.727,0.0,4.381,-7.473,-2.49,0.0,-0.508,-0.424,-0.046,2.791,-0.015,-1.275,11.715,0.0,0.0,0.0,-6.17,-0.062,-1.086,-3.673,-0.16,0.0,1.91,7.491,2.017
+base-battery-scheduled.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-battery.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,12.04,0.0,2.898,9.37,0.731,0.0,0.0,0.0,2.942,3.648,0.0,0.0,0.585,1.314,-1.599,0.0,0.0,2.977,0.0,-0.048,1.674,0.0,0.0,0.0,5.215,-3.529,-1.183,0.0,-0.891,-0.193,0.0,0.0,-0.044,-0.088,1.303,0.0,0.0,-0.905,0.0,-0.045,-0.267,-0.401,0.0,0.0,0.548,3.087,0.842
+base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,0.0,9.37,0.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
+base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.884,0.0,5.047,9.37,0.612,0.0,0.0,0.0,-0.005,3.291,0.0,0.0,1.39,3.735,-4.234,0.0,0.0,4.543,0.0,-0.086,1.252,0.0,0.791,0.0,2.747,-5.509,-1.139,0.0,-0.001,-0.416,0.0,0.0,-0.396,-0.133,3.971,0.0,0.0,-2.921,0.0,-0.081,-0.23,-1.203,-0.123,0.0,0.499,5.302,0.886
+base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,24.537,0.0,2.432,9.37,0.818,0.0,0.0,0.0,5.38,4.202,0.0,0.0,0.793,1.293,-1.715,0.0,0.0,5.429,0.0,-0.077,1.706,0.0,0.0,0.0,12.476,-3.737,-1.243,0.0,-1.132,-0.025,0.0,0.0,-0.042,0.011,1.187,0.0,0.0,-1.14,0.0,-0.073,-0.178,-0.296,0.0,0.0,0.531,2.88,0.782
+base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1.763,0.0,3.001,9.37,0.637,0.0,0.0,0.0,0.284,3.112,0.0,0.0,0.366,1.367,-1.509,0.0,0.0,0.305,0.0,-0.01,1.681,0.0,0.0,0.0,0.543,-3.319,-1.118,0.0,-0.795,-0.417,0.0,0.0,-0.066,-0.199,1.393,0.0,0.0,-0.811,0.0,-0.007,-0.374,-0.454,0.0,0.0,0.567,3.297,0.907
+base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1.519,0.0,4.744,9.37,0.593,0.0,0.0,0.0,-0.003,3.149,0.0,0.0,0.363,1.418,-1.433,0.0,0.0,-0.003,0.0,-0.057,1.741,0.0,0.0,0.0,0.472,-3.109,-1.046,0.0,-0.002,-0.488,0.0,0.0,-0.03,-0.32,1.47,0.0,0.0,-0.002,0.0,-0.055,-0.481,-0.645,0.0,0.0,0.844,3.508,0.98
+base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.706,0.0,8.666,9.37,0.579,0.0,0.0,0.0,-0.017,2.482,0.0,0.0,0.423,3.949,-2.673,0.0,0.0,-0.013,0.0,-0.407,0.996,0.0,0.687,0.0,0.0,-4.026,-0.783,0.0,-0.012,-1.037,0.0,0.0,-0.034,-1.032,5.529,0.0,0.0,-0.008,0.0,-0.398,-0.37,-1.611,-0.368,0.0,0.0,6.859,1.242
+base-bldgtype-mf-unit-residents-1.xml,1.303,0.0,6.943,4.142,0.587,0.0,0.0,0.0,-0.017,2.596,0.0,0.0,0.419,4.07,-3.113,0.0,0.0,-0.015,0.0,-0.341,1.298,0.0,0.746,0.0,0.0,-3.471,-0.93,0.0,-0.012,-0.775,0.0,0.0,-0.01,-0.682,5.089,0.0,0.0,-0.011,0.0,-0.333,-0.387,-1.448,-0.271,0.0,0.0,4.755,1.095
+base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.883,0.0,9.663,9.37,0.58,0.0,0.0,0.0,-0.016,2.514,0.0,0.0,0.42,3.966,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.285,0.0,0.699,0.0,0.049,-4.127,-0.81,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.979,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.472,-1.602,-0.349,0.0,1.171,6.755,1.216
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213
+base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.851,0.0,9.663,9.37,0.58,0.0,0.0,0.0,-0.016,2.514,0.0,0.0,0.42,3.964,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.283,0.0,0.699,0.0,0.019,-4.125,-0.809,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.98,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.472,-1.602,-0.35,0.0,1.171,6.757,1.216
+base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.851,0.0,9.663,9.37,0.58,0.0,0.0,0.0,-0.016,2.514,0.0,0.0,0.42,3.964,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.283,0.0,0.699,0.0,0.019,-4.125,-0.809,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.98,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.472,-1.602,-0.35,0.0,1.171,6.757,1.216
+base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.763,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.642,0.0,0.957,0.0,0.043,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.736,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.017,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,0.0,8.398,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,0.0,9.544,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,0.0,8.398,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19
+base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,0.0,9.544,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193
+base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,0.0,9.544,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193
+base-bldgtype-mf-unit-shared-generator.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213
+base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.016,2.518,0.0,0.0,0.421,3.978,-2.778,0.0,0.0,-0.013,0.0,-0.388,1.286,0.0,0.702,0.0,0.0,-4.146,-0.814,0.0,-0.012,-0.978,0.0,0.0,-0.031,-0.966,5.424,0.0,0.0,-0.009,0.0,-0.379,-0.461,-1.595,-0.347,0.0,0.0,6.736,1.211
+base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,-0.018,2.47,0.0,0.0,0.422,3.947,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.05,0.0,0.0,0.0,0.0,-4.279,-0.789,0.0,-0.013,-1.037,0.0,0.0,-0.032,-1.015,5.52,0.0,0.0,-0.01,0.0,-0.409,-0.844,-1.625,0.0,0.0,0.0,7.1,1.236
+base-bldgtype-mf-unit-shared-laundry-room.xml,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,-0.017,2.526,0.0,0.0,0.42,3.983,-2.859,0.0,0.0,-0.014,0.0,-0.392,2.071,0.0,0.0,0.0,0.0,-3.984,-0.834,0.0,-0.012,-0.938,0.0,0.0,-0.026,-0.911,5.343,0.0,0.0,-0.01,0.0,-0.383,-0.783,-1.56,0.0,0.0,0.0,6.286,1.191
+base-bldgtype-mf-unit-shared-mechvent-multiple.xml,8.173,0.0,4.99,9.37,0.617,0.0,0.0,0.0,-0.018,2.765,0.0,0.0,0.405,4.177,-4.251,0.0,0.0,-0.022,0.0,-0.279,0.208,0.0,12.311,0.0,0.0,-5.846,-1.19,0.0,-0.014,-0.127,0.0,0.0,0.065,0.169,3.951,0.0,0.0,-0.019,0.0,-0.274,-0.015,-0.708,-4.0,0.0,0.0,4.951,0.835
+base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,-0.017,2.644,0.0,0.0,0.425,4.131,-3.171,0.0,0.0,-0.016,0.0,-0.35,1.419,0.0,1.913,0.0,0.0,-4.671,-0.942,0.0,-0.013,-0.712,0.0,0.0,-0.0,-0.592,5.031,0.0,0.0,-0.012,0.0,-0.342,-0.386,-1.324,-1.707,0.0,0.0,6.19,1.083
+base-bldgtype-mf-unit-shared-mechvent.xml,3.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,-0.015,2.674,0.0,0.0,0.393,4.003,-3.667,0.0,0.0,-0.016,0.0,-0.244,1.391,0.0,5.29,0.0,0.0,-5.058,-1.039,0.0,-0.011,-0.528,0.0,0.0,-0.004,-0.476,4.535,0.0,0.0,-0.013,0.0,-0.238,-0.311,-1.324,-1.453,0.0,0.0,5.781,0.986
+base-bldgtype-mf-unit-shared-pv-battery.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213
+base-bldgtype-mf-unit-shared-pv.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213
+base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,2.567,0.0,5.416,9.441,0.282,0.0,0.0,0.0,-0.015,2.661,0.0,0.0,0.375,3.882,-3.842,0.0,0.0,-0.016,0.0,-0.229,1.255,0.0,0.763,0.0,0.0,-1.537,-1.027,0.0,-0.012,-0.485,0.0,0.0,-0.013,-0.521,4.36,0.0,0.0,-0.013,0.0,-0.223,-0.312,-1.203,-0.195,0.0,0.0,3.22,0.998
+base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,1.642,0.0,6.509,2.731,0.581,0.0,0.0,0.0,-0.018,2.628,0.0,0.0,0.416,4.089,-3.278,0.0,0.0,-0.018,0.0,-0.321,1.63,0.0,0.759,0.0,0.0,-3.308,-0.974,0.0,-0.013,-0.694,0.0,0.0,-0.004,-0.586,4.924,0.0,0.0,-0.013,0.0,-0.314,-0.461,-1.388,-0.242,0.0,0.0,4.298,1.051
+base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182
+base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182
+base-bldgtype-mf-unit-shared-water-heater.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182
+base-bldgtype-mf-unit.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213
+base-bldgtype-mf-whole-building.xml,34.234,0.0,50.758,55.316,3.606,0.0,0.0,0.0,7.768,18.937,0.0,0.0,2.279,27.645,-27.459,0.0,0.0,7.747,0.0,-1.267,56.52,0.0,0.0,0.0,0.0,-50.237,-7.691,0.0,-1.08,-3.267,0.0,0.0,-0.061,-3.866,29.904,0.0,0.0,-3.845,0.0,-1.242,-13.477,-10.141,0.0,0.0,0.0,51.001,6.95
+base-bldgtype-sfa-unit-2stories.xml,16.249,0.0,9.759,9.106,0.615,0.0,0.0,0.0,2.428,5.061,0.297,4.364,0.638,7.116,-8.588,0.0,0.0,0.0,5.002,-0.071,7.137,0.0,0.729,0.0,2.184,-7.794,-2.489,0.0,0.011,-0.629,-0.025,1.636,-0.014,-1.001,7.908,0.0,0.0,0.0,-3.947,-0.066,-1.646,-3.206,-0.159,0.0,1.194,7.788,2.018
+base-bldgtype-sfa-unit-atticroof-cathedral.xml,57.361,0.0,15.982,9.106,0.623,0.0,0.0,49.493,0.0,2.937,0.289,3.687,0.667,4.711,-5.326,0.0,0.0,0.0,3.418,-0.85,7.541,0.0,0.772,0.0,0.0,-8.484,-2.669,8.563,0.0,-0.155,0.004,1.537,0.121,0.039,5.084,0.0,0.0,0.0,-4.273,-0.813,-0.842,-1.316,-0.093,0.0,0.0,7.077,1.838
+base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,12.507,0.0,7.559,9.221,0.615,0.0,0.0,0.0,2.337,2.366,0.292,4.232,0.624,3.565,-4.314,0.0,0.0,0.0,4.671,-0.046,3.13,0.0,0.726,0.0,3.182,-6.594,-1.805,0.0,0.03,-0.275,-0.026,1.588,-0.018,-0.584,3.96,0.0,0.0,0.0,-4.039,-0.044,-0.748,-1.557,-0.163,0.0,1.448,6.599,1.461
+base-bldgtype-sfa-unit.xml,12.507,0.0,7.559,9.221,0.615,0.0,0.0,0.0,2.337,2.366,0.292,4.232,0.624,3.565,-4.314,0.0,0.0,0.0,4.671,-0.046,3.13,0.0,0.726,0.0,3.182,-6.594,-1.805,0.0,0.03,-0.275,-0.026,1.588,-0.018,-0.584,3.96,0.0,0.0,0.0,-4.039,-0.044,-0.748,-1.557,-0.163,0.0,1.448,6.599,1.461
+base-dhw-combi-tankless-outside.xml,17.356,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.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
+base-dhw-combi-tankless.xml,18.411,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.736,3.635,0.512,7.475,0.63,10.086,-12.693,0.0,0.0,0.0,8.135,-0.071,5.887,0.0,0.727,0.0,0.0,-7.472,-2.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
+base-dhw-desuperheater-2-speed.xml,0.0,0.0,14.324,9.07,0.666,2.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.072,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.135,-3.692,-0.162,0.0,3.241,8.497,2.042
+base-dhw-desuperheater-gshp.xml,20.948,0.0,13.383,9.069,0.614,2.864,0.0,0.0,3.583,3.636,0.512,7.501,0.629,10.08,-12.691,0.0,0.0,0.0,8.283,-0.065,4.905,0.0,0.727,0.0,3.498,-7.483,-2.489,0.0,0.004,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.238,-0.062,-1.126,-3.813,-0.161,0.0,1.915,8.388,2.018
+base-dhw-desuperheater-hpwh.xml,25.884,0.0,14.073,9.081,1.811,2.917,0.0,0.0,3.516,3.632,0.511,7.485,0.627,10.06,-12.745,0.0,0.0,0.0,8.31,-0.057,4.958,0.0,0.726,0.0,5.354,-4.328,-2.497,0.0,0.002,-0.394,-0.042,2.895,-0.009,-1.192,11.668,0.0,0.0,0.0,-6.008,-0.053,-1.067,-3.563,-0.152,0.0,2.81,7.472,2.01
+base-dhw-desuperheater-tankless.xml,0.0,0.0,13.755,9.076,0.0,2.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.047,-0.437,-0.047,2.752,-0.023,-1.348,11.85,0.0,0.0,0.0,-6.846,-0.067,-1.133,-3.653,-0.161,0.0,2.829,8.227,2.042
+base-dhw-desuperheater-var-speed.xml,0.0,0.0,15.183,9.07,0.666,2.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.443,-0.048,2.737,-0.025,-1.364,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.139,-3.697,-0.162,0.0,4.145,8.504,2.042
+base-dhw-desuperheater.xml,0.0,0.0,13.969,9.07,0.666,2.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.055,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.14,-3.694,-0.162,0.0,2.863,8.52,2.042
+base-dhw-dwhr.xml,21.753,0.0,13.611,6.631,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-indirect-detailed-setpoints.xml,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-dse.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-outside.xml,17.356,0.0,0.0,9.101,3.299,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.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
+base-dhw-indirect-standbyloss.xml,16.973,0.0,0.0,9.1,2.704,0.0,0.0,0.0,3.739,3.639,0.512,7.49,0.63,10.097,-12.676,0.0,0.0,0.0,8.128,-0.072,5.894,0.0,0.728,0.0,0.0,-8.988,-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,0.0,0.0,0.0,0.0,0.0
+base-dhw-indirect-with-solar-fraction.xml,17.989,0.0,0.0,9.076,0.787,0.0,5.9,0.0,3.737,3.636,0.512,7.479,0.63,10.092,-12.691,0.0,0.0,0.0,8.134,-0.073,5.89,0.0,0.727,0.0,0.0,-7.917,-2.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
+base-dhw-indirect.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-jacket-electric.xml,21.954,0.0,13.504,9.071,0.296,0.0,0.0,0.0,3.543,3.637,0.512,7.504,0.629,10.084,-12.691,0.0,0.0,0.0,8.288,-0.066,4.937,0.0,0.728,0.0,4.639,-7.626,-2.489,0.0,-0.033,-0.438,-0.048,2.756,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.23,-0.062,-1.116,-3.759,-0.161,0.0,2.737,7.636,2.018
+base-dhw-jacket-gas.xml,22.304,0.0,13.905,9.071,2.729,0.0,0.0,0.0,3.54,3.637,0.512,7.507,0.63,10.086,-12.69,0.0,0.0,0.0,8.293,-0.066,6.007,0.0,0.727,0.0,4.713,-8.434,-2.488,0.0,-0.04,-0.442,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.062,-1.393,-3.788,-0.162,0.0,2.809,8.313,2.019
+base-dhw-jacket-hpwh.xml,25.915,0.0,11.845,9.122,1.311,0.0,0.0,0.0,3.513,3.631,0.511,7.486,0.626,10.051,-12.749,0.0,0.0,0.0,8.316,-0.051,4.956,0.0,0.726,0.0,5.355,-4.296,-2.497,0.0,0.027,-0.387,-0.041,2.918,-0.008,-1.179,11.664,0.0,0.0,0.0,-5.97,-0.047,-1.063,-3.396,-0.15,0.0,2.455,5.337,2.01
+base-dhw-jacket-indirect.xml,17.387,0.0,0.0,9.097,1.921,0.0,0.0,0.0,3.74,3.639,0.512,7.487,0.63,10.092,-12.69,0.0,0.0,0.0,8.133,-0.069,5.892,0.0,0.728,0.0,0.0,-8.551,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-low-flow-fixtures.xml,21.752,0.0,13.611,8.834,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-multiple.xml,17.564,0.0,0.0,9.062,2.83,0.0,5.89,0.0,3.737,3.637,0.512,7.485,0.63,10.096,-12.685,0.0,0.0,0.0,8.137,-0.073,5.892,0.0,0.728,0.0,0.0,-8.376,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-dhw-none.xml,22.11,0.0,13.252,0.0,0.0,0.0,0.0,0.0,3.539,3.634,0.511,7.497,0.629,10.078,-12.691,0.0,0.0,0.0,8.279,-0.066,5.462,0.0,0.0,0.0,4.669,-7.266,-2.489,0.0,-0.026,-0.434,-0.048,2.77,-0.018,-1.306,11.723,0.0,0.0,0.0,-6.208,-0.062,-1.251,-3.724,0.0,0.0,2.69,7.301,2.018
+base-dhw-recirc-demand-scheduled.xml,21.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-recirc-demand.xml,21.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-recirc-manual.xml,21.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-recirc-nocontrol.xml,21.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-recirc-temperature.xml,21.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-recirc-timer.xml,21.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-dhw-solar-direct-evacuated-tube.xml,21.752,0.0,13.625,9.094,0.629,0.0,6.634,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.756,7.796,2.018
+base-dhw-solar-direct-flat-plate.xml,21.744,0.0,13.674,9.208,0.696,0.0,8.354,0.0,3.544,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.936,0.0,0.728,0.0,4.599,-7.804,-2.488,0.0,-0.037,-0.441,-0.049,2.746,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.121,-3.788,-0.162,0.0,2.764,7.858,2.019
+base-dhw-solar-direct-ics.xml,21.753,0.0,13.647,9.131,0.65,0.0,6.625,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.119,-3.782,-0.162,0.0,2.76,7.817,2.018
+base-dhw-solar-fraction.xml,22.005,0.0,13.478,9.071,0.215,0.0,5.896,0.0,3.542,3.637,0.512,7.504,0.629,10.083,-12.691,0.0,0.0,0.0,8.288,-0.066,4.937,0.0,0.728,0.0,4.649,-7.582,-2.489,0.0,-0.033,-0.438,-0.048,2.758,-0.019,-1.32,11.723,0.0,0.0,0.0,-6.228,-0.062,-1.116,-3.753,-0.161,0.0,2.733,7.599,2.018
+base-dhw-solar-indirect-flat-plate.xml,21.409,0.0,14.094,9.186,0.684,0.0,8.35,0.0,3.55,3.64,0.512,7.511,0.63,10.09,-12.69,0.0,0.0,0.0,8.294,-0.066,4.937,0.0,0.728,0.0,4.536,-8.112,-2.488,0.0,-0.046,-0.447,-0.049,2.727,-0.022,-1.353,11.724,0.0,0.0,0.0,-6.271,-0.062,-1.128,-3.85,-0.163,0.0,2.832,8.373,2.019
+base-dhw-solar-thermosyphon-flat-plate.xml,21.745,0.0,13.671,9.2,0.691,0.0,8.316,0.0,3.544,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.936,0.0,0.728,0.0,4.599,-7.803,-2.488,0.0,-0.037,-0.441,-0.049,2.747,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.121,-3.787,-0.162,0.0,2.763,7.855,2.019
+base-dhw-tank-coal.xml,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02
+base-dhw-tank-detailed-setpoints.xml,21.746,0.0,13.614,9.045,0.624,0.0,0.0,0.0,3.544,3.637,0.512,7.506,0.629,10.085,-12.69,0.0,0.0,0.0,8.288,-0.066,4.936,0.0,0.728,0.0,4.599,-7.802,-2.488,0.0,-0.037,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.242,-0.062,-1.119,-3.781,-0.162,0.0,2.754,7.789,2.019
+base-dhw-tank-elec-uef.xml,21.704,0.0,13.636,9.071,0.692,0.0,0.0,0.0,3.545,3.637,0.512,7.506,0.63,10.086,-12.69,0.0,0.0,0.0,8.289,-0.066,4.937,0.0,0.728,0.0,4.591,-7.84,-2.488,0.0,-0.037,-0.441,-0.049,2.747,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.12,-3.785,-0.162,0.0,2.758,7.819,2.019
+base-dhw-tank-gas-outside.xml,22.141,0.0,13.408,9.071,5.067,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tank-gas-uef-fhr.xml,22.191,0.0,13.964,9.071,2.982,0.0,0.0,0.0,3.541,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.294,-0.066,6.007,0.0,0.727,0.0,4.691,-8.532,-2.488,0.0,-0.042,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.394,-3.799,-0.162,0.0,2.818,8.394,2.019
+base-dhw-tank-gas-uef.xml,22.191,0.0,13.964,9.071,2.982,0.0,0.0,0.0,3.541,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.294,-0.066,6.007,0.0,0.727,0.0,4.691,-8.532,-2.488,0.0,-0.042,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.394,-3.799,-0.162,0.0,2.818,8.394,2.019
+base-dhw-tank-gas.xml,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02
+base-dhw-tank-heat-pump-detailed-schedules.xml,26.644,0.0,11.58,9.212,1.419,0.0,0.0,0.0,3.499,3.629,0.511,7.488,0.627,10.065,-12.729,0.0,0.0,0.0,8.322,-0.059,4.961,0.0,0.726,0.0,5.494,-3.728,-2.497,0.0,0.039,-0.372,-0.039,2.957,-0.003,-1.112,11.684,0.0,0.0,0.0,-5.895,-0.056,-1.038,-3.264,-0.15,0.0,2.384,4.959,2.01
+base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,26.68,0.0,11.492,9.127,1.31,0.0,0.0,0.0,3.511,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.963,0.0,0.726,0.0,5.495,-3.697,-2.5,0.0,0.044,-0.372,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.046,-3.334,-0.148,0.0,2.387,4.958,2.008
+base-dhw-tank-heat-pump-outside.xml,22.141,0.0,13.408,9.093,2.525,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tank-heat-pump-uef.xml,26.68,0.0,11.492,9.127,1.31,0.0,0.0,0.0,3.511,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.963,0.0,0.726,0.0,5.495,-3.697,-2.5,0.0,0.044,-0.372,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.046,-3.334,-0.148,0.0,2.387,4.958,2.008
+base-dhw-tank-heat-pump-with-solar-fraction.xml,23.418,0.0,12.862,9.103,0.603,0.0,5.917,0.0,3.532,3.634,0.511,7.495,0.628,10.069,-12.712,0.0,0.0,0.0,8.295,-0.06,4.942,0.0,0.727,0.0,4.907,-6.394,-2.491,0.0,-0.011,-0.42,-0.046,2.811,-0.015,-1.271,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.097,-3.622,-0.158,0.0,2.626,6.774,2.017
+base-dhw-tank-heat-pump-with-solar.xml,22.37,0.0,14.242,9.016,1.969,0.0,8.052,0.0,3.544,3.64,0.512,7.515,0.629,10.08,-12.698,0.0,0.0,0.0,8.306,-0.059,4.943,0.0,0.728,0.0,4.713,-7.324,-2.488,0.0,-0.042,-0.442,-0.049,2.745,-0.021,-1.346,11.715,0.0,0.0,0.0,-6.235,-0.055,-1.124,-3.832,-0.162,0.0,2.85,8.462,2.019
+base-dhw-tank-heat-pump.xml,25.822,0.0,11.828,9.116,1.721,0.0,0.0,0.0,3.515,3.631,0.511,7.489,0.626,10.053,-12.751,0.0,0.0,0.0,8.323,-0.053,4.957,0.0,0.726,0.0,5.342,-4.389,-2.498,0.0,0.026,-0.389,-0.041,2.911,-0.009,-1.183,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.065,-3.435,-0.15,0.0,2.438,5.408,2.009
+base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,21.514,0.0,13.652,9.117,0.021,0.0,0.0,0.0,3.553,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.318,-0.062,5.339,0.0,0.776,0.0,4.546,-8.507,-2.504,0.0,-0.037,-0.44,-0.048,2.75,-0.02,-1.329,11.73,0.0,0.0,0.0,-6.238,-0.058,-1.227,-3.776,-0.183,0.0,2.75,7.993,2.005
+base-dhw-tank-model-type-stratified.xml,22.128,0.0,13.415,9.121,0.021,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.672,-7.476,-2.489,0.0,-0.031,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.114,-3.74,-0.161,0.0,2.723,7.511,2.018
+base-dhw-tank-oil.xml,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02
+base-dhw-tank-wood.xml,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02
+base-dhw-tankless-detailed-setpoints.xml,22.141,0.0,13.408,9.052,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-electric-outside.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-electric-uef.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-electric.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-gas-uef.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-gas-with-solar-fraction.xml,22.141,0.0,13.408,9.071,0.0,0.0,5.896,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-gas-with-solar.xml,21.796,0.0,13.838,9.262,0.0,0.0,8.001,0.0,3.545,3.638,0.512,7.508,0.63,10.086,-12.69,0.0,0.0,0.0,8.291,-0.066,4.937,0.0,0.728,0.0,4.609,-7.776,-2.488,0.0,-0.04,-0.443,-0.049,2.742,-0.021,-1.338,11.724,0.0,0.0,0.0,-6.251,-0.062,-1.122,-3.806,-0.162,0.0,2.792,8.038,2.019
+base-dhw-tankless-gas.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-dhw-tankless-propane.xml,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018
+base-enclosure-2stories-garage.xml,24.019,0.0,21.438,9.049,0.611,0.0,0.0,0.0,3.856,7.588,1.092,5.856,0.687,20.447,-24.934,0.0,0.0,0.865,6.679,-0.176,9.049,0.0,0.761,0.0,3.208,-8.584,-2.924,0.0,-0.078,-0.998,-0.099,1.89,-0.019,-1.437,23.4,0.0,0.0,-0.133,-4.728,-0.167,-1.86,-7.195,-0.157,0.0,2.591,8.467,2.342
+base-enclosure-2stories.xml,28.522,0.0,20.975,8.985,0.613,0.0,0.0,0.0,3.764,7.867,1.07,7.889,0.666,20.489,-25.194,0.0,0.0,0.0,9.001,-0.146,11.226,0.0,0.745,0.0,3.763,-9.647,-3.528,0.0,-0.051,-0.99,-0.093,2.72,-0.015,-1.934,23.371,0.0,0.0,0.0,-6.362,-0.136,-2.386,-7.511,-0.158,0.0,2.524,9.522,2.841
+base-enclosure-beds-1.xml,23.162,0.0,12.737,5.264,0.616,0.0,0.0,0.0,3.528,3.629,0.511,7.48,0.628,10.065,-12.698,0.0,0.0,0.0,8.266,-0.064,4.941,0.0,0.725,0.0,4.874,-6.548,-2.49,0.0,-0.007,-0.418,-0.045,2.818,-0.013,-1.254,11.715,0.0,0.0,0.0,-6.131,-0.06,-1.096,-3.608,-0.158,0.0,2.615,6.535,2.017
+base-enclosure-beds-2.xml,22.454,0.0,13.172,7.209,0.615,0.0,0.0,0.0,3.536,3.633,0.511,7.492,0.629,10.08,-12.696,0.0,0.0,0.0,8.279,-0.068,4.94,0.0,0.727,0.0,4.737,-7.177,-2.49,0.0,-0.022,-0.429,-0.047,2.782,-0.016,-1.287,11.717,0.0,0.0,0.0,-6.183,-0.064,-1.106,-3.693,-0.16,0.0,2.685,7.155,2.017
+base-enclosure-beds-4.xml,21.059,0.0,14.055,10.893,0.614,0.0,0.0,0.0,3.555,3.643,0.513,7.52,0.63,10.096,-12.689,0.0,0.0,0.0,8.305,-0.066,4.935,0.0,0.729,0.0,4.465,-8.422,-2.487,0.0,-0.05,-0.451,-0.05,2.715,-0.023,-1.366,11.724,0.0,0.0,0.0,-6.292,-0.062,-1.131,-3.863,-0.163,0.0,2.823,8.409,2.02
+base-enclosure-beds-5.xml,20.37,0.0,14.507,12.689,0.614,0.0,0.0,0.0,3.564,3.647,0.513,7.534,0.632,10.112,-12.683,0.0,0.0,0.0,8.322,-0.069,4.934,0.0,0.731,0.0,4.33,-9.048,-2.487,0.0,-0.065,-0.462,-0.052,2.682,-0.025,-1.397,11.73,0.0,0.0,0.0,-6.342,-0.065,-1.141,-3.946,-0.165,0.0,2.893,9.032,2.02
+base-enclosure-ceilingtypes.xml,36.508,0.0,14.673,9.071,0.619,0.0,0.0,0.0,17.337,3.595,0.505,7.238,0.622,9.983,-12.816,0.0,0.0,0.0,7.719,-0.092,5.098,0.0,0.734,0.0,6.705,-7.963,-2.534,0.0,0.221,-0.304,-0.029,2.933,0.015,-0.904,11.597,0.0,0.0,0.0,-6.047,-0.082,-0.962,-3.524,-0.137,0.0,2.518,7.61,1.973
+base-enclosure-floortypes.xml,36.182,0.0,10.664,9.178,0.621,0.0,0.0,0.0,3.475,3.645,0.0,0.0,0.673,9.523,-13.017,0.0,0.0,29.11,0.0,-0.232,2.451,0.0,0.786,0.0,7.396,-6.525,-1.567,0.0,0.418,-0.064,0.0,0.0,0.1,0.968,10.952,0.0,0.0,-7.868,0.0,-0.227,-0.222,-1.991,-0.084,0.0,2.36,5.458,1.079
+base-enclosure-garage.xml,24.028,0.0,8.945,9.071,0.726,0.0,0.0,0.0,3.531,3.793,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.426,0.0,0.0,0.0,4.35,-5.766,-2.495,0.0,0.117,-0.266,-0.033,2.467,0.004,-1.083,8.261,0.0,0.0,0.0,-5.594,-0.043,-1.19,-2.577,0.0,0.0,1.38,5.629,2.012
+base-enclosure-infil-ach-house-pressure.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-enclosure-infil-cfm-house-pressure.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-enclosure-infil-cfm50.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-enclosure-infil-ela.xml,28.745,0.0,13.206,9.071,0.617,0.0,0.0,0.0,3.498,3.639,0.512,7.49,0.631,10.105,-12.714,0.0,0.0,0.0,8.299,-0.07,10.683,0.0,0.726,0.0,5.971,-7.834,-2.496,0.0,0.009,-0.395,-0.042,2.87,-0.007,-1.171,11.699,0.0,0.0,0.0,-6.047,-0.066,-2.337,-3.491,-0.153,0.0,2.73,7.743,2.011
+base-enclosure-infil-flue.xml,23.042,0.0,13.521,9.071,0.615,0.0,0.0,0.0,3.533,3.635,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.291,-0.067,6.008,0.0,0.727,0.0,4.853,-7.802,-2.489,0.0,-0.03,-0.434,-0.048,2.775,-0.018,-1.303,11.723,0.0,0.0,0.0,-6.2,-0.063,-1.38,-3.714,-0.16,0.0,2.749,7.778,2.018
+base-enclosure-infil-natural-ach.xml,28.398,0.0,13.225,9.071,0.617,0.0,0.0,0.0,3.499,3.639,0.512,7.49,0.631,10.102,-12.71,0.0,0.0,0.0,8.299,-0.07,10.397,0.0,0.726,0.0,5.904,-7.831,-2.496,0.0,0.006,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.281,-3.504,-0.154,0.0,2.731,7.746,2.012
+base-enclosure-infil-natural-cfm.xml,28.398,0.0,13.225,9.071,0.617,0.0,0.0,0.0,3.499,3.639,0.512,7.49,0.631,10.102,-12.71,0.0,0.0,0.0,8.299,-0.07,10.397,0.0,0.726,0.0,5.904,-7.831,-2.496,0.0,0.006,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.281,-3.504,-0.154,0.0,2.731,7.746,2.012
+base-enclosure-orientations.xml,21.984,0.0,13.52,9.071,0.615,0.0,0.0,0.0,3.54,3.634,0.511,7.498,0.863,10.076,-12.691,0.0,0.0,0.0,8.278,-0.066,4.936,0.0,0.727,0.0,4.643,-7.799,-2.489,0.0,-0.032,-0.438,-0.048,2.755,-0.149,-1.32,11.723,0.0,0.0,0.0,-6.227,-0.062,-1.117,-3.762,-0.161,0.0,2.735,7.782,2.018
+base-enclosure-overhangs.xml,22.032,0.0,13.062,9.071,0.615,0.0,0.0,0.0,3.537,3.633,0.511,7.487,0.629,9.995,-12.285,0.0,0.0,0.0,8.257,-0.067,4.937,0.0,0.728,0.0,4.648,-7.807,-2.49,0.0,-0.017,-0.427,-0.046,2.78,-0.016,-1.336,11.091,0.0,0.0,0.0,-6.176,-0.063,-1.111,-3.717,-0.16,0.0,2.647,7.773,2.017
+base-enclosure-rooftypes.xml,21.839,0.0,13.151,9.071,0.615,0.0,0.0,0.0,3.656,3.635,0.512,7.499,0.629,10.079,-12.691,0.0,0.0,0.0,8.28,-0.064,4.936,0.0,0.727,0.0,4.604,-7.799,-2.489,0.0,-0.287,-0.436,-0.048,2.761,-0.019,-1.315,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.118,-3.757,-0.161,0.0,2.479,7.782,2.018
+base-enclosure-skylights-physical-properties.xml,23.036,0.0,17.032,9.071,0.614,0.0,0.0,0.0,3.54,3.651,0.514,7.558,0.633,10.115,-12.626,2.713,-2.174,0.0,8.436,-0.07,4.955,0.0,0.73,0.0,4.878,-7.78,-2.485,0.0,-0.129,-0.495,-0.056,2.638,-0.033,-1.464,11.705,-0.052,3.749,0.0,-6.527,-0.065,-1.131,-3.965,-0.167,0.0,3.45,7.805,2.023
+base-enclosure-skylights-shading.xml,22.764,0.0,13.687,9.071,0.615,0.0,0.0,0.0,3.527,3.633,0.511,7.501,0.629,10.073,-12.685,1.146,-0.321,0.0,8.292,-0.065,4.943,0.0,0.728,0.0,4.797,-7.8,-2.489,0.0,-0.036,-0.435,-0.048,2.767,-0.018,-1.311,11.717,-0.492,0.431,0.0,-6.219,-0.061,-1.111,-3.733,-0.161,0.0,2.779,7.781,2.018
+base-enclosure-skylights-storms.xml,21.507,0.0,16.026,9.071,0.614,0.0,0.0,0.0,3.554,3.654,0.514,7.556,0.633,10.123,-12.643,0.856,-1.409,0.0,8.402,-0.068,4.943,0.0,0.729,0.0,4.567,-7.781,-2.485,0.0,-0.111,-0.488,-0.055,2.642,-0.032,-1.457,11.715,0.261,2.537,0.0,-6.485,-0.064,-1.14,-3.983,-0.167,0.0,3.226,7.804,2.022
+base-enclosure-skylights.xml,21.181,0.0,16.371,9.071,0.613,0.0,0.0,0.0,3.562,3.659,0.515,7.569,0.634,10.135,-12.639,0.764,-1.653,0.0,8.431,-0.068,4.944,0.0,0.73,0.0,4.504,-7.78,-2.485,0.0,-0.122,-0.496,-0.056,2.622,-0.034,-1.479,11.709,0.263,2.973,0.0,-6.529,-0.064,-1.144,-4.026,-0.167,0.0,3.288,7.805,2.022
+base-enclosure-split-level.xml,11.101,0.0,12.007,9.291,0.608,0.0,0.0,0.0,3.945,3.837,0.0,0.0,0.688,10.05,-12.161,0.0,0.0,0.0,7.969,-0.147,2.743,0.0,0.773,0.0,0.319,-5.952,-1.448,0.0,-0.058,-0.571,0.0,0.0,-0.016,-0.626,12.095,0.0,0.0,0.0,-1.544,-0.144,-0.553,-3.486,-0.164,0.0,0.082,6.062,1.198
+base-enclosure-thermal-mass.xml,21.619,0.0,13.466,9.071,0.615,0.0,0.0,0.0,3.544,3.634,0.512,7.484,0.629,10.104,-12.697,0.0,0.0,0.0,8.256,-0.104,4.93,0.0,0.726,0.0,4.56,-7.799,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.345,11.731,0.0,0.0,0.0,-6.227,-0.1,-1.124,-3.85,-0.162,0.0,2.697,7.782,2.019
+base-enclosure-walltypes.xml,38.671,0.0,9.02,9.071,0.622,0.0,0.0,0.0,3.347,16.954,0.473,7.138,0.836,1.295,-1.58,0.0,0.0,0.0,7.332,-0.051,5.072,0.0,0.731,0.0,7.406,-8.029,-2.552,0.0,0.291,-0.597,-0.008,3.408,-0.083,-0.07,1.661,0.0,0.0,0.0,-4.954,-0.045,-0.95,-0.49,-0.122,0.0,1.64,7.537,1.955
+base-enclosure-windows-natural-ventilation-availability.xml,21.822,0.0,9.825,9.071,0.618,0.0,0.0,0.0,3.544,3.637,0.512,7.513,0.629,10.084,-12.691,0.0,0.0,0.0,8.339,-0.064,4.937,0.0,0.728,0.0,4.615,-7.8,-2.489,0.0,0.047,-0.377,-0.039,2.955,-0.004,-1.132,11.723,0.0,0.0,0.0,-5.942,-0.06,-1.038,-8.093,-0.151,0.0,2.279,7.775,2.018
+base-enclosure-windows-none.xml,24.318,0.0,7.46,9.071,0.619,0.0,0.0,0.0,3.458,5.149,0.499,7.205,0.6,0.0,0.0,0.0,0.0,0.0,7.478,-0.043,4.913,0.0,0.722,0.0,4.703,-7.908,-2.516,0.0,0.21,-0.364,-0.022,3.226,0.016,0.0,0.0,0.0,0.0,0.0,-5.15,-0.041,-1.095,0.0,-0.142,0.0,1.219,7.663,1.991
+base-enclosure-windows-physical-properties.xml,28.88,0.0,13.519,9.071,0.617,0.0,0.0,0.0,3.483,3.628,0.511,7.479,0.63,19.599,-16.819,0.0,0.0,0.0,8.385,-0.085,5.014,0.0,0.73,0.0,6.013,-7.855,-2.5,0.0,0.029,-0.371,-0.039,2.872,-0.0,-4.822,14.292,0.0,0.0,0.0,-6.099,-0.08,-1.027,-3.403,-0.151,0.0,2.834,7.721,2.007
+base-enclosure-windows-shading-seasons.xml,21.657,0.0,13.718,9.071,0.614,0.0,0.0,0.0,3.546,3.638,0.512,7.492,0.63,10.091,-12.691,0.0,0.0,0.0,8.23,-0.074,4.937,0.0,0.728,0.0,4.58,-7.8,-2.489,0.0,-0.054,-0.459,-0.051,2.685,-0.024,-1.234,12.133,0.0,0.0,0.0,-6.385,-0.07,-1.136,-3.915,-0.164,0.0,2.771,7.783,2.018
+base-enclosure-windows-shading.xml,23.749,0.0,5.784,9.071,0.623,0.0,0.0,0.0,3.582,3.692,0.519,7.538,0.642,10.689,-11.794,0.0,0.0,0.0,8.474,-0.061,5.031,0.0,0.74,0.0,4.964,-8.052,-2.553,0.0,0.393,-0.072,0.004,3.608,0.068,-3.443,2.905,0.0,0.0,0.0,-4.566,-0.057,-0.855,-2.597,-0.113,0.0,1.216,7.51,1.955
+base-enclosure-windows-storms.xml,23.217,0.0,11.681,9.071,0.617,0.0,0.0,0.0,3.504,3.602,0.507,7.401,0.621,8.59,-9.448,0.0,0.0,0.0,8.025,-0.063,4.931,0.0,0.724,0.0,4.847,-7.814,-2.492,0.0,0.036,-0.387,-0.041,2.884,-0.007,-0.665,8.68,0.0,0.0,0.0,-5.952,-0.059,-1.093,-3.538,-0.156,0.0,2.38,7.763,2.015
+base-foundation-ambient.xml,16.92,0.0,14.86,9.178,0.607,0.0,0.0,0.0,3.813,3.819,0.0,0.0,0.766,10.497,-11.429,0.0,0.0,10.197,0.0,-0.472,2.237,0.0,0.784,0.0,3.703,-5.899,-1.423,0.0,-0.062,-0.542,0.0,0.0,0.037,-0.071,12.54,0.0,0.0,-3.677,0.0,-0.465,-0.369,-2.652,-0.155,0.0,3.165,6.115,1.223
+base-foundation-basement-garage.xml,19.283,0.0,13.548,9.2,0.614,0.0,0.0,0.0,3.653,4.732,0.514,5.492,0.701,9.833,-12.62,0.0,0.0,0.833,6.114,-0.044,3.407,0.0,0.734,0.0,4.212,-6.728,-1.879,0.0,-0.013,-0.615,-0.052,1.964,-0.035,-1.095,11.668,0.0,0.0,-0.122,-4.544,-0.041,-0.742,-3.609,-0.163,0.0,2.872,6.732,1.525
+base-foundation-belly-wing-no-skirt.xml,20.139,0.0,11.968,9.178,0.609,0.0,0.0,0.0,3.982,5.368,0.0,0.0,0.754,8.71,-11.203,0.0,0.0,10.285,0.0,-0.375,2.288,0.0,0.792,0.0,6.626,-6.019,-1.453,0.0,0.329,-0.564,0.0,0.0,0.048,0.154,9.491,0.0,0.0,-3.365,0.0,-0.368,-0.358,-2.426,-0.14,0.0,2.223,5.993,1.193
+base-foundation-belly-wing-skirt.xml,19.772,0.0,12.018,9.178,0.608,0.0,0.0,0.0,3.985,5.372,0.0,0.0,0.755,8.717,-11.178,0.0,0.0,9.978,0.0,-0.369,2.283,0.0,0.792,0.0,6.509,-6.006,-1.45,0.0,0.321,-0.577,0.0,0.0,0.046,0.13,9.516,0.0,0.0,-3.297,0.0,-0.362,-0.362,-2.444,-0.141,0.0,2.229,6.006,1.196
+base-foundation-complex.xml,38.442,0.0,16.947,9.071,0.618,0.0,0.0,0.0,3.442,3.664,0.521,19.568,0.652,10.158,-12.86,0.0,0.0,0.0,8.68,-0.12,6.325,0.0,0.74,0.0,7.771,-8.008,-2.548,0.0,0.058,-0.344,-0.042,3.886,0.001,-0.922,11.551,0.0,0.0,0.0,-4.502,-0.112,-1.171,-3.975,-0.134,0.0,3.304,7.566,1.959
+base-foundation-conditioned-basement-slab-insulation-full.xml,18.736,0.0,15.503,9.071,0.613,0.0,0.0,0.0,3.63,3.702,0.521,8.197,0.644,10.264,-12.674,0.0,0.0,0.0,4.764,-0.069,4.959,0.0,0.733,0.0,4.028,-7.798,-2.489,0.0,-0.083,-0.475,-0.054,2.229,-0.029,-1.44,11.74,0.0,0.0,0.0,-3.663,-0.063,-1.132,-4.074,-0.165,0.0,3.066,7.789,2.018
+base-foundation-conditioned-basement-slab-insulation.xml,20.502,0.0,14.351,9.071,0.614,0.0,0.0,0.0,3.573,3.657,0.515,7.807,0.633,10.133,-12.689,0.0,0.0,0.0,6.854,-0.061,4.937,0.0,0.729,0.0,4.366,-7.791,-2.487,0.0,-0.06,-0.458,-0.051,2.565,-0.025,-1.391,11.724,0.0,0.0,0.0,-5.239,-0.057,-1.129,-3.884,-0.163,0.0,2.878,7.792,2.02
+base-foundation-conditioned-basement-wall-insulation.xml,21.02,0.0,12.179,9.071,0.615,0.0,0.0,0.0,3.576,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.942,-0.072,4.956,0.0,0.732,0.0,4.481,-7.81,-2.491,0.0,0.022,-0.395,-0.042,1.15,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.086,-3.489,-0.158,0.0,2.56,7.771,2.016
+base-foundation-conditioned-crawlspace.xml,17.68,0.0,10.552,9.178,0.615,0.0,0.0,0.0,3.707,3.603,0.507,5.099,0.623,9.803,-12.661,0.0,0.0,0.0,9.971,-0.063,3.499,0.0,0.729,0.0,0.0,-5.999,-1.462,0.0,0.051,-0.445,-0.049,1.827,-0.02,-1.119,11.692,0.0,0.0,0.0,-3.741,-0.059,-0.812,-3.588,-0.16,0.0,0.0,5.997,1.184
+base-foundation-multiple.xml,12.657,0.0,13.634,9.122,0.695,0.0,0.0,0.0,3.981,3.865,0.0,0.0,0.777,10.554,-11.241,0.0,0.0,5.346,0.0,-0.386,2.638,0.0,0.0,0.0,2.027,-3.832,-1.416,0.0,-0.108,-0.683,0.0,0.0,-0.007,-0.371,12.727,0.0,0.0,-0.653,0.0,-0.382,-0.533,-2.975,0.0,0.0,1.633,3.979,1.23
+base-foundation-slab.xml,10.622,0.0,12.368,9.178,0.607,0.0,0.0,0.0,3.926,3.797,0.0,0.0,0.689,10.052,-12.092,0.0,0.0,0.0,8.098,-0.157,2.109,0.0,0.773,0.0,0.305,-5.927,-1.442,0.0,-0.053,-0.562,0.0,0.0,-0.019,-0.689,12.164,0.0,0.0,0.0,-1.525,-0.155,-0.433,-3.305,-0.168,0.0,0.084,6.089,1.204
+base-foundation-unconditioned-basement-above-grade.xml,13.574,0.0,13.995,9.122,0.713,0.0,0.0,0.0,3.987,3.868,0.0,0.0,0.776,10.611,-11.315,0.0,0.0,5.964,0.0,-0.396,2.651,0.0,0.0,0.0,2.384,-3.853,-1.423,0.0,-0.086,-0.662,0.0,0.0,-0.003,-0.366,12.654,0.0,0.0,-0.503,0.0,-0.391,-0.519,-2.965,0.0,0.0,1.871,3.958,1.223
+base-foundation-unconditioned-basement-assembly-r.xml,11.674,0.0,12.189,9.122,0.712,0.0,0.0,0.0,3.975,3.836,0.0,0.0,0.766,10.565,-11.128,0.0,0.0,4.499,0.0,-0.41,2.635,0.0,0.0,0.0,1.828,-3.816,-1.409,0.0,-0.082,-0.633,0.0,0.0,0.021,-0.332,12.841,0.0,0.0,-2.062,0.0,-0.406,-0.536,-2.808,0.0,0.0,1.188,3.996,1.237
+base-foundation-unconditioned-basement-wall-insulation.xml,19.504,0.0,10.835,9.122,0.641,0.0,0.0,0.0,3.731,3.627,0.0,0.0,0.636,9.315,-12.484,0.0,0.0,14.718,0.0,-0.055,2.561,0.0,0.0,0.0,2.661,-3.989,-1.475,0.0,0.08,-0.423,0.0,0.0,-0.009,-0.362,11.485,0.0,0.0,-2.721,0.0,-0.054,-0.488,-2.784,0.0,0.0,1.291,3.822,1.171
+base-foundation-unconditioned-basement.xml,12.671,0.0,13.713,9.122,0.704,0.0,0.0,0.0,3.972,3.83,0.0,0.0,0.757,10.505,-11.224,0.0,0.0,5.393,0.0,-0.392,2.638,0.0,0.0,0.0,2.106,-3.83,-1.415,0.0,-0.088,-0.641,0.0,0.0,0.011,-0.398,12.744,0.0,0.0,-0.706,0.0,-0.387,-0.533,-2.975,0.0,0.0,1.696,3.981,1.231
+base-foundation-unvented-crawlspace.xml,10.643,0.0,13.883,9.178,0.709,0.0,0.0,0.0,3.961,3.815,0.0,0.0,0.776,10.61,-10.815,0.0,0.0,4.565,0.0,-0.449,2.148,0.0,0.773,0.0,1.661,-5.373,-1.377,0.0,-0.191,-0.753,0.0,0.0,0.006,-0.578,13.154,0.0,0.0,-2.013,0.0,-0.445,-0.454,-3.062,-0.191,0.0,1.346,6.05,1.268
+base-foundation-vented-crawlspace-above-grade.xml,12.796,0.0,13.829,9.178,0.778,0.0,0.0,0.0,3.959,3.799,0.0,0.0,0.753,10.471,-11.092,0.0,0.0,6.716,0.0,-0.438,2.16,0.0,0.779,0.0,2.206,-5.476,-1.403,0.0,-0.092,-0.641,0.0,0.0,0.024,-0.383,12.877,0.0,0.0,-2.421,0.0,-0.433,-0.342,-2.972,-0.175,0.0,1.462,5.94,1.243
+base-foundation-vented-crawlspace.xml,12.869,0.0,13.258,9.178,0.786,0.0,0.0,0.0,3.968,3.823,0.0,0.0,0.763,10.539,-11.154,0.0,0.0,6.741,0.0,-0.429,2.164,0.0,0.781,0.0,2.221,-5.501,-1.41,0.0,-0.077,-0.636,0.0,0.0,0.02,-0.336,12.815,0.0,0.0,-2.93,0.0,-0.424,-0.335,-2.898,-0.171,0.0,1.339,5.914,1.236
+base-foundation-walkout-basement.xml,26.933,0.0,14.52,9.071,0.616,0.0,0.0,0.0,3.529,3.693,0.521,7.366,0.648,10.885,-12.924,0.0,0.0,0.0,10.144,-0.075,6.77,0.0,0.728,0.0,5.626,-7.825,-2.494,0.0,-0.089,-0.499,-0.058,1.498,-0.027,-1.441,12.103,0.0,0.0,0.0,-3.623,-0.069,-1.466,-4.145,-0.157,0.0,2.896,7.754,2.013
+base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,21.009,0.096,12.069,9.071,0.615,0.0,0.0,0.0,3.569,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.289,-0.067,4.934,0.0,0.728,0.0,3.837,-7.8,-2.489,0.0,0.039,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.131,-3.777,-0.162,0.0,1.169,7.782,2.018
+base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,12.29,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.001,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.15,-3.654,-0.163,0.0,1.746,7.904,2.042
+base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,22.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018
+base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,22.831,0.328,0.0,9.071,0.592,0.0,0.0,0.0,3.495,3.641,0.512,7.491,0.63,10.097,-12.691,0.0,0.0,0.0,8.142,-0.07,5.145,0.0,0.728,0.0,5.659,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,22.542,0.963,12.225,9.071,0.615,0.0,0.0,0.0,3.603,3.664,0.514,7.734,0.62,9.995,-12.822,0.0,0.0,0.0,9.051,0.07,5.003,0.0,0.76,0.0,4.315,-7.794,-2.499,0.0,0.032,-0.419,-0.047,2.844,-0.028,-1.416,11.591,0.0,0.0,0.0,-6.236,0.061,-1.14,-4.206,-0.159,0.0,1.739,7.787,2.008
+base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,22.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018
+base-hvac-air-to-air-heat-pump-1-speed.xml,22.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018
+base-hvac-air-to-air-heat-pump-2-speed.xml,23.251,0.287,12.899,9.071,0.615,0.0,0.0,0.0,3.482,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.293,-0.067,5.076,0.0,0.728,0.0,6.011,-7.8,-2.489,0.0,0.001,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.778,-0.162,0.0,2.021,7.782,2.018
+base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,21.012,0.0,12.369,9.071,0.615,0.0,0.0,0.0,3.573,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.289,-0.067,4.864,0.0,0.728,0.0,3.91,-7.8,-2.489,0.0,0.031,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.133,-3.778,-0.162,0.0,1.483,7.782,2.018
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,28.351,11.136,15.326,9.071,0.616,0.0,0.0,0.0,3.278,3.597,0.506,7.506,0.614,9.915,-12.591,0.0,0.0,0.0,8.221,-0.031,6.353,0.0,0.719,0.0,10.085,-7.688,-2.467,0.0,-0.166,-0.467,-0.052,2.794,-0.032,-1.454,11.822,0.0,0.0,0.0,-6.254,-0.027,-1.43,-3.736,-0.167,0.0,4.732,7.892,2.04
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,27.938,14.195,15.438,9.071,0.616,0.0,0.0,0.0,3.295,3.593,0.505,7.4,0.613,9.849,-12.676,0.0,0.0,0.0,8.231,-0.016,6.342,0.0,0.714,0.0,9.587,-7.709,-2.455,0.0,-0.156,-0.463,-0.052,2.714,-0.03,-1.496,11.737,0.0,0.0,0.0,-6.195,-0.013,-1.453,-3.721,-0.17,0.0,4.619,7.87,2.052
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,28.645,11.139,15.476,9.071,0.615,0.0,0.0,0.0,3.32,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,6.429,0.0,0.727,0.0,10.224,-7.81,-2.491,0.0,-0.125,-0.431,-0.047,2.777,-0.017,-1.296,11.708,0.0,0.0,0.0,-6.188,-0.063,-1.366,-3.722,-0.16,0.0,4.781,7.77,2.016
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,24.464,10.783,12.694,9.071,0.615,0.0,0.0,0.0,3.473,3.635,0.512,7.501,0.63,10.088,-12.691,0.0,0.0,0.0,8.297,-0.07,6.128,0.0,0.727,0.0,6.211,-7.805,-2.49,0.0,0.02,-0.434,-0.048,2.772,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.2,-0.066,-1.39,-3.713,-0.16,0.0,1.906,7.775,2.018
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,29.021,12.343,15.578,9.071,0.615,0.0,0.0,0.0,3.267,3.64,0.512,7.51,0.63,10.086,-12.696,0.0,0.0,0.0,8.301,-0.063,5.547,0.0,0.727,0.0,11.498,-7.798,-2.488,0.0,-0.133,-0.439,-0.048,2.749,-0.02,-1.331,11.717,0.0,0.0,0.0,-6.236,-0.059,-1.109,-3.787,-0.162,0.0,4.796,7.783,2.019
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,26.505,0.241,14.393,9.071,0.615,0.0,0.0,0.0,3.362,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.066,5.134,0.0,0.728,0.0,9.318,-7.801,-2.489,0.0,-0.063,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.123,-3.782,-0.162,0.0,3.578,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,25.98,0.083,13.77,9.071,0.615,0.0,0.0,0.0,3.382,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.088,0.0,0.728,0.0,8.822,-7.801,-2.489,0.0,-0.032,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.126,-3.78,-0.162,0.0,2.93,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.13,0.086,14.073,9.071,0.615,0.0,0.0,0.0,3.377,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.088,0.0,0.728,0.0,8.977,-7.801,-2.489,0.0,-0.046,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.246,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,26.432,6.079,14.045,9.071,0.615,0.0,0.0,0.0,3.363,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,5.275,0.0,0.728,0.0,9.101,-7.801,-2.489,0.0,-0.044,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.218,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,25.98,0.082,14.079,9.071,0.615,0.0,0.0,0.0,3.382,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.087,0.0,0.728,0.0,8.821,-7.801,-2.489,0.0,-0.046,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.252,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,25.066,0.249,13.999,9.071,0.615,0.0,0.0,0.0,3.459,3.654,0.515,7.546,0.639,10.145,-12.62,0.0,0.0,0.0,8.28,-0.063,4.983,0.0,0.732,0.0,7.779,-7.8,-2.489,0.0,-0.147,-0.463,-0.052,2.773,-0.025,-1.354,11.734,0.0,0.0,0.0,-6.209,-0.058,-1.105,-3.619,-0.168,0.0,3.042,7.781,2.018
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,25.301,0.033,13.766,9.071,0.615,0.0,0.0,0.0,3.412,3.642,0.512,7.515,0.631,10.095,-12.697,0.0,0.0,0.0,8.308,-0.065,5.007,0.004,0.728,0.0,8.172,-7.801,-2.489,0.0,-0.032,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.126,-3.775,-0.162,0.0,2.933,7.78,2.018
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,24.558,0.219,13.769,9.071,0.615,0.0,0.0,0.0,3.427,3.632,0.511,7.484,0.628,10.063,-12.708,0.0,0.0,0.0,8.267,-0.063,4.992,0.007,0.727,0.0,7.573,-7.804,-2.49,0.0,-0.03,-0.439,-0.048,2.746,-0.019,-1.33,11.706,0.0,0.0,0.0,-6.237,-0.059,-1.126,-3.774,-0.162,0.0,2.928,7.777,2.017
+base-hvac-air-to-air-heat-pump-var-speed.xml,24.664,0.291,13.77,9.071,0.615,0.0,0.0,0.0,3.433,3.639,0.512,7.509,0.63,10.089,-12.691,0.0,0.0,0.0,8.295,-0.067,5.008,0.0,0.728,0.0,7.54,-7.8,-2.489,0.0,-0.033,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.126,-3.78,-0.162,0.0,2.93,7.782,2.018
+base-hvac-autosize-sizing-controls.xml,7.008,0.0,8.629,16.197,0.647,0.0,0.0,0.0,2.851,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.528,-0.057,3.508,0.0,0.573,0.0,1.49,-8.608,-2.465,0.0,-0.08,-0.54,-0.062,2.449,-0.05,-1.666,11.85,0.0,0.0,0.0,-7.412,-0.057,-1.208,-6.539,-0.183,0.0,1.514,8.945,2.042
+base-hvac-autosize.xml,22.282,0.0,13.899,9.071,0.615,0.0,0.0,0.0,3.525,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.959,0.0,0.728,0.0,5.124,-7.8,-2.489,0.0,-0.051,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.116,-3.78,-0.162,0.0,3.05,7.782,2.018
+base-hvac-boiler-coal-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-elec-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-gas-central-ac-1-speed.xml,17.195,0.0,13.688,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.082,-12.691,0.0,0.0,0.0,8.282,-0.066,4.807,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,-0.041,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.118,-3.779,-0.162,0.0,2.832,7.782,2.018
+base-hvac-boiler-gas-only-pilot.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-gas-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-oil-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-propane-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-boiler-wood-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,12.281,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.15,-3.654,-0.163,0.0,1.736,7.904,2.042
+base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,13.279,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.141,-3.655,-0.163,0.0,2.761,7.904,2.042
+base-hvac-central-ac-only-1-speed.xml,0.0,0.0,13.279,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.141,-3.655,-0.163,0.0,2.761,7.904,2.042
+base-hvac-central-ac-only-2-speed.xml,0.0,0.0,13.648,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.068,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.137,-3.655,-0.163,0.0,3.136,7.904,2.042
+base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,14.932,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.131,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.135,-3.663,-0.163,0.0,4.486,7.904,2.042
+base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,13.807,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.066,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.149,-3.658,-0.163,0.0,3.325,7.904,2.042
+base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,0.0,14.514,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.109,-0.445,-0.048,2.731,-0.026,-1.374,11.844,0.0,0.0,0.0,-6.848,-0.065,-1.141,-3.661,-0.163,0.0,4.05,7.903,2.042
+base-hvac-central-ac-only-var-speed.xml,0.0,0.0,14.519,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.107,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.14,-3.66,-0.163,0.0,4.057,7.904,2.042
+base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,23.029,0.329,13.689,9.071,0.615,0.0,0.0,0.0,3.491,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.146,0.0,0.728,0.0,5.704,-7.8,-2.489,0.0,-0.04,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.118,-3.78,-0.162,0.0,2.832,7.782,2.018
+base-hvac-dse.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,23.535,11.097,12.673,9.071,0.615,0.0,0.0,0.0,3.466,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,5.188,0.0,0.728,0.0,6.196,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,24.396,15.181,12.673,9.071,0.615,0.0,0.0,0.0,3.432,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,5.289,0.0,0.728,0.0,6.984,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018
+base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,24.738,15.216,12.9,9.071,0.615,0.0,0.0,0.0,3.42,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.297,-0.067,5.299,0.0,0.728,0.0,7.327,-7.8,-2.489,0.0,0.001,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.778,-0.162,0.0,2.021,7.782,2.018
+base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,25.694,15.433,13.77,9.071,0.615,0.0,0.0,0.0,3.388,3.639,0.512,7.51,0.63,10.091,-12.691,0.0,0.0,0.0,8.298,-0.067,5.304,0.0,0.728,0.0,8.311,-7.8,-2.489,0.0,-0.033,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.126,-3.78,-0.162,0.0,2.93,7.782,2.018
+base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,20.25,11.678,11.895,9.071,0.615,0.0,0.0,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.066,4.863,0.0,0.728,0.0,3.125,-7.8,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.777,-0.162,0.0,0.997,7.782,2.018
+base-hvac-ducts-area-fractions.xml,44.408,0.0,28.471,8.985,0.613,0.0,0.0,0.0,3.201,7.884,1.072,7.901,0.668,20.507,-25.256,0.0,0.0,0.0,9.019,-0.126,11.283,0.0,0.746,0.0,20.137,-9.657,-3.531,0.0,-0.343,-0.977,-0.092,2.724,-0.015,-1.928,23.309,0.0,0.0,0.0,-6.356,-0.114,-2.37,-7.543,-0.157,0.0,10.34,9.512,2.837
+base-hvac-ducts-area-multipliers.xml,21.134,0.0,13.297,9.071,0.615,0.0,0.0,0.0,3.567,3.637,0.512,7.506,0.629,10.085,-12.69,0.0,0.0,0.0,8.288,-0.066,4.931,0.0,0.728,0.0,3.967,-7.798,-2.488,0.0,-0.023,-0.441,-0.049,2.748,-0.02,-1.329,11.724,0.0,0.0,0.0,-6.241,-0.062,-1.12,-3.778,-0.162,0.0,2.428,7.784,2.019
+base-hvac-ducts-buried.xml,19.763,0.0,12.513,9.071,0.615,0.0,0.0,0.0,3.615,3.637,0.512,7.504,0.629,10.084,-12.69,0.0,0.0,0.0,8.286,-0.066,4.921,0.0,0.728,0.0,2.562,-7.798,-2.488,0.0,0.007,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.122,-3.779,-0.162,0.0,1.622,7.784,2.019
+base-hvac-ducts-defaults.xml,18.953,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.281,-0.066,4.906,0.0,0.728,0.0,1.663,-7.8,-2.489,0.0,0.058,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.77,-0.162,0.0,-0.0,7.782,2.018
+base-hvac-ducts-effective-rvalue.xml,21.749,0.0,13.609,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.597,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.752,7.782,2.018
+base-hvac-ducts-leakage-cfm50.xml,21.826,0.0,13.8,9.071,0.615,0.0,0.0,0.0,3.555,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.906,0.0,0.728,0.0,4.704,-7.8,-2.489,0.0,-0.02,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.135,-3.779,-0.162,0.0,2.972,7.782,2.018
+base-hvac-ducts-leakage-percent.xml,22.748,0.0,14.236,9.071,0.615,0.0,0.0,0.0,3.508,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,4.944,0.0,0.728,0.0,5.622,-7.8,-2.489,0.0,-0.065,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.118,-3.781,-0.162,0.0,3.404,7.782,2.018
+base-hvac-elec-resistance-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-evap-cooler-furnace-gas.xml,22.485,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.518,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.989,0.0,0.728,0.0,5.299,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018
+base-hvac-evap-cooler-only-ducted.xml,0.0,0.0,11.297,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.14,-3.651,-0.163,0.0,0.708,7.904,2.042
+base-hvac-evap-cooler-only.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-fireplace-wood-only.xml,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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
+base-hvac-floor-furnace-propane-only.xml,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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
+base-hvac-furnace-coal-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-elec-central-ac-1-speed.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-hvac-furnace-elec-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-central-ac-2-speed.xml,21.752,0.0,13.987,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.054,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.114,-3.779,-0.162,0.0,3.135,7.782,2.018
+base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,21.755,0.0,14.928,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.504,0.629,10.081,-12.703,0.0,0.0,0.0,8.295,-0.064,4.936,0.003,0.728,0.0,4.594,-7.803,-2.49,0.0,-0.098,-0.44,-0.049,2.747,-0.02,-1.333,11.71,0.0,0.0,0.0,-6.234,-0.06,-1.118,-3.783,-0.162,0.0,4.132,7.779,2.018
+base-hvac-furnace-gas-central-ac-var-speed.xml,21.752,0.0,14.936,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.098,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.117,-3.784,-0.162,0.0,4.138,7.782,2.018
+base-hvac-furnace-gas-only-autosize-factor.xml,20.98,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.571,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.138,-0.07,4.929,0.0,0.728,0.0,3.964,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only-detailed-setpoints.xml,7.866,0.0,0.0,9.071,0.636,0.0,0.0,0.0,2.809,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.498,0.0,0.566,0.0,1.828,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only-pilot.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-gas-room-ac.xml,22.485,0.0,10.915,9.071,0.615,0.0,0.0,0.0,3.518,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.989,0.0,0.728,0.0,5.299,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018
+base-hvac-furnace-oil-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-propane-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-wood-only.xml,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-furnace-x3-dse.xml,17.366,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.774,3.672,0.517,7.576,0.635,10.182,-12.817,0.0,0.0,0.0,8.363,-0.067,4.854,0.0,0.735,0.0,0.0,-7.876,-2.513,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-ground-to-air-heat-pump-cooling-only.xml,0.0,0.0,12.426,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.149,-3.654,-0.163,0.0,1.886,7.904,2.042
+base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,24.437,0.0,13.212,9.071,0.616,0.0,0.0,0.0,3.534,3.597,0.506,7.824,0.621,9.976,-12.716,0.0,0.0,0.0,11.631,-0.066,4.907,0.0,0.726,0.0,3.875,-7.816,-2.492,0.0,0.016,-0.43,-0.047,3.183,-0.017,-1.292,11.697,0.0,0.0,0.0,-6.264,-0.063,-1.114,-3.767,-0.159,0.0,1.878,7.763,2.015
+base-hvac-ground-to-air-heat-pump-heating-only.xml,21.03,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.568,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.139,-0.07,4.953,0.0,0.728,0.0,3.991,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-ground-to-air-heat-pump.xml,20.603,0.0,12.73,9.071,0.615,0.0,0.0,0.0,3.586,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.288,-0.067,4.905,0.0,0.728,0.0,3.445,-7.8,-2.489,0.0,0.008,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.778,-0.162,0.0,1.848,7.782,2.018
+base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,23.664,0.632,13.159,9.071,0.615,0.0,0.0,0.0,3.467,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.293,-0.067,5.121,0.0,0.728,0.0,6.39,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.78,-0.162,0.0,2.294,7.782,2.018
+base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,24.887,0.569,13.463,9.071,0.615,0.0,0.0,0.0,3.421,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,5.165,0.0,0.728,0.0,7.609,-7.8,-2.489,0.0,-0.027,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.779,-0.162,0.0,2.603,7.782,2.018
+base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,27.28,0.271,14.746,9.071,0.615,0.0,0.0,0.0,3.332,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.168,0.0,0.728,0.0,10.086,-7.801,-2.489,0.0,-0.082,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.122,-3.784,-0.162,0.0,3.947,7.78,2.018
+base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,26.222,0.591,14.493,9.071,0.615,0.0,0.0,0.0,3.374,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.102,0.0,0.728,0.0,9.055,-7.801,-2.489,0.0,-0.069,-0.439,-0.048,2.749,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.123,-3.782,-0.162,0.0,3.681,7.78,2.018
+base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,22.782,0.0,14.414,9.071,0.615,0.0,0.0,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.649,-7.796,-2.488,0.0,-0.077,-0.441,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.241,-0.061,-1.114,-3.782,-0.162,0.0,3.583,7.786,2.019
+base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,22.777,0.0,14.826,9.071,0.615,0.0,0.0,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.644,-7.796,-2.488,0.0,-0.097,-0.44,-0.049,2.75,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.061,-1.109,-3.781,-0.162,0.0,4.002,7.786,2.019
+base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,22.776,0.0,15.639,9.071,0.615,0.0,0.0,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.644,-7.796,-2.488,0.0,-0.138,-0.44,-0.048,2.75,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.24,-0.061,-1.113,-3.788,-0.162,0.0,4.868,7.786,2.019
+base-hvac-install-quality-furnace-gas-only.xml,23.563,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.476,3.641,0.512,7.491,0.63,10.094,-12.691,0.0,0.0,0.0,8.141,-0.069,5.011,0.0,0.728,0.0,6.546,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-install-quality-ground-to-air-heat-pump.xml,21.648,0.0,13.239,9.071,0.615,0.0,0.0,0.0,3.549,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.942,0.0,0.728,0.0,4.486,-7.8,-2.489,0.0,-0.017,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.123,-3.779,-0.162,0.0,2.374,7.782,2.018
+base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,12.262,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.157,-3.657,-0.163,0.0,1.734,7.904,2.042
+base-hvac-install-quality-mini-split-heat-pump-ducted.xml,20.485,0.138,12.172,9.071,0.615,0.0,0.0,0.0,3.596,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.833,0.0,0.728,0.0,3.395,-7.8,-2.489,0.0,0.041,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.778,-0.162,0.0,1.283,7.782,2.018
+base-hvac-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,12.013,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.157,-3.655,-0.163,0.0,1.472,7.904,2.042
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,10.572,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-mini-split-air-conditioner-only-ductless.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,0.0,0.0,11.53,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.158,-3.652,-0.163,0.0,0.971,7.904,2.042
+base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,20.716,0.0,12.447,9.071,0.615,0.0,0.0,0.0,3.589,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.837,0.0,0.728,0.0,3.629,-7.8,-2.489,0.0,0.03,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.135,-3.78,-0.162,0.0,1.57,7.782,2.018
+base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,20.324,0.0,12.224,9.071,0.615,0.0,0.0,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.828,0.0,0.728,0.0,3.234,-7.8,-2.489,0.0,0.039,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.136,-3.778,-0.162,0.0,1.338,7.782,2.018
+base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,19.863,0.054,0.0,9.071,0.592,0.0,0.0,0.0,3.607,3.636,0.512,7.477,0.629,10.082,-12.691,0.0,0.0,0.0,8.119,-0.07,4.829,0.0,0.728,0.0,2.975,-7.799,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-heating-only.xml,19.917,0.061,0.0,9.071,0.592,0.0,0.0,0.0,3.612,3.64,0.512,7.488,0.63,10.094,-12.691,0.0,0.0,0.0,8.137,-0.07,4.835,0.0,0.728,0.0,2.963,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,20.085,0.056,11.894,9.071,0.615,0.0,0.0,0.0,3.603,3.633,0.511,7.493,0.628,10.073,-12.691,0.0,0.0,0.0,8.27,-0.067,4.82,0.0,0.727,0.0,3.059,-7.799,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.244,-0.063,-1.135,-3.776,-0.162,0.0,0.997,7.782,2.018
+base-hvac-mini-split-heat-pump-ducted.xml,20.144,0.063,11.895,9.071,0.615,0.0,0.0,0.0,3.607,3.637,0.512,7.504,0.63,10.085,-12.691,0.0,0.0,0.0,8.287,-0.066,4.827,0.0,0.728,0.0,3.05,-7.8,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.777,-0.162,0.0,0.997,7.782,2.018
+base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,17.195,0.393,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,18.365,7.754,10.83,9.071,0.615,0.0,0.0,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.891,0.0,0.727,0.0,0.115,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018
+base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,17.574,7.655,10.914,9.071,0.615,0.0,0.0,0.0,3.716,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.811,0.0,0.728,0.0,0.394,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,18.246,7.627,10.83,9.071,0.615,0.0,0.0,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.887,0.0,0.727,0.0,0.0,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018
+base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019
+base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-mini-split-heat-pump-ductless.xml,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-multiple.xml,34.725,0.288,18.302,9.071,0.615,0.0,0.0,0.0,3.408,3.638,0.512,7.505,0.63,10.088,-12.711,0.0,0.0,0.0,8.308,-0.066,7.342,0.0,0.727,0.0,15.319,-7.812,-2.491,0.0,-0.118,-0.431,-0.047,2.776,-0.017,-1.299,11.701,0.0,0.0,0.0,-6.188,-0.062,-1.316,-3.741,-0.16,0.0,7.571,7.768,2.016
+base-hvac-none.xml,0.0,0.0,0.0,4.496,0.335,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+base-hvac-ptac-with-heating-electricity.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-ptac-with-heating-natural-gas.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-ptac.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-pthp-heating-capacity-17f.xml,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-pthp.xml,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-room-ac-only-33percent.xml,0.0,0.0,3.489,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015,-0.147,-0.016,0.901,-0.008,-0.452,3.911,0.0,0.0,0.0,-2.262,-0.022,-0.383,-1.203,-0.054,0.0,0.0,2.608,0.674
+base-hvac-room-ac-only-ceer.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-room-ac-only-detailed-setpoints.xml,0.0,0.0,7.85,9.071,0.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.617,-0.073,2.251,-0.068,-1.894,11.85,0.0,0.0,0.0,-7.585,-0.069,-1.298,-4.026,-0.195,0.0,0.0,7.922,2.042
+base-hvac-room-ac-only.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042
+base-hvac-room-ac-with-heating.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-room-ac-with-reverse-cycle.xml,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019
+base-hvac-seasons.xml,21.58,0.0,13.475,9.071,0.615,0.0,0.0,0.0,3.503,3.599,0.507,7.507,0.615,9.923,-12.591,0.0,0.0,0.0,8.214,-0.033,4.88,0.0,0.72,0.0,4.568,-7.689,-2.467,0.0,-0.075,-0.475,-0.053,2.763,-0.034,-1.479,11.822,0.0,0.0,0.0,-6.3,-0.029,-1.169,-3.798,-0.168,0.0,2.729,7.892,2.04
+base-hvac-setpoints-daily-schedules.xml,20.8,0.0,11.695,9.071,0.617,0.0,0.0,0.0,3.502,3.568,0.501,7.484,0.605,9.792,-12.687,0.0,0.0,0.0,8.632,0.008,4.795,0.0,0.725,0.0,4.312,-7.752,-2.486,0.0,-0.044,-0.468,-0.053,2.705,-0.034,-1.489,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.178,-4.193,-0.17,0.0,2.156,7.825,2.022
+base-hvac-setpoints-daily-setbacks.xml,20.44,0.0,12.268,9.071,0.617,0.0,0.0,0.0,3.496,3.553,0.499,7.325,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.769,0.0,0.723,0.0,4.217,-7.768,-2.488,0.0,-0.031,-0.468,-0.053,2.647,-0.033,-1.492,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.164,-4.138,-0.172,0.0,2.315,7.808,2.019
+base-hvac-setpoints.xml,7.634,0.0,8.338,9.071,0.649,0.0,0.0,0.0,2.816,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.369,-0.059,3.482,0.0,0.566,0.0,1.589,-7.591,-2.465,0.0,-0.07,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.184,-6.334,-0.18,0.0,1.758,7.912,2.042
+base-hvac-space-heater-gas-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-hvac-stove-oil-only.xml,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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
+base-hvac-stove-wood-pellets-only.xml,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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
+base-hvac-undersized.xml,14.526,0.0,6.245,9.071,0.634,0.0,0.0,0.0,2.635,2.86,0.4,5.177,0.433,7.706,-12.831,0.0,0.0,0.0,4.479,-0.12,3.589,0.0,0.588,0.0,9.471,-7.791,-2.505,0.0,-0.341,-0.768,-0.096,1.698,-0.106,-2.359,11.582,0.0,0.0,0.0,-7.92,-0.06,-1.389,-5.999,-0.228,0.0,2.721,7.747,2.002
+base-hvac-wall-furnace-elec-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv
new file mode 100644
index 0000000000..16a282d463
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv
@@ -0,0 +1,311 @@
+HPXML,Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Resilience: Battery (hr)
+base-appliances-coal.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1947.6,3623.0,3623.0,22.743,18.48,0.0
+base-appliances-dehumidifier-ief-portable.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2041.5,2988.3,2988.3,9.893,15.525,0.0
+base-appliances-dehumidifier-ief-whole-home.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2082.0,2988.3,2988.3,9.886,15.525,0.0
+base-appliances-dehumidifier-multiple.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1905.7,3007.7,3007.7,9.926,15.524,0.0
+base-appliances-dehumidifier.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,1956.1,2988.3,2988.3,9.925,15.525,0.0
+base-appliances-freezer-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2094.4,3629.8,3629.8,22.664,18.445,0.0
+base-appliances-gas.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1947.6,3623.0,3623.0,22.743,18.48,0.0
+base-appliances-modified.xml,0.0,0.0,1354.7,1998.3,11171.6,2563.5,2076.5,3478.6,3478.6,22.73,18.304,0.0
+base-appliances-none.xml,0.0,0.0,0.0,0.0,11171.5,2563.5,1803.8,3001.1,3001.1,23.133,17.144,0.0
+base-appliances-oil.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1947.6,3623.0,3623.0,22.743,18.48,0.0
+base-appliances-propane.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1947.6,3623.0,3623.0,22.743,18.48,0.0
+base-appliances-refrigerator-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-appliances-wood.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1947.6,3623.0,3623.0,22.743,18.48,0.0
+base-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2047.2,3387.1,3387.1,23.038,16.725,0.0
+base-atticroof-conditioned.xml,0.0,0.0,1354.7,998.0,11171.5,2471.3,2290.8,3880.0,3880.0,22.957,20.649,0.0
+base-atticroof-flat.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2029.7,3207.2,3207.2,17.971,12.997,0.0
+base-atticroof-radiant-barrier-ceiling.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1758.3,3538.7,3538.7,14.608,20.521,0.0
+base-atticroof-radiant-barrier.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,1746.9,3409.8,3409.8,13.721,19.306,0.0
+base-atticroof-unvented-insulated-roof.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2048.7,3333.7,3333.7,20.24,14.556,0.0
+base-atticroof-vented.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2055.6,3407.5,3407.5,22.776,16.134,0.0
+base-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2086.1,3893.1,3893.1,22.816,18.188,1.326
+base-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1496.3,1906.1,1906.1,8.305,6.269,0.0
+base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1459.3,1409.8,1459.3,0.0,0.0,0.0
+base-bldgtype-mf-unit-adjacent-to-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1513.4,2227.0,2227.0,10.066,11.013,0.0
+base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1491.9,2170.3,2170.3,11.815,8.826,0.0
+base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1508.3,1950.2,1950.2,3.926,6.271,0.0
+base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1514.5,1818.7,1818.7,4.235,4.793,0.0
+base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1612.1,2253.4,2253.4,3.618,7.758,0.0
+base-bldgtype-mf-unit-residents-1.xml,0.0,0.0,817.1,530.8,4684.1,1314.5,1088.9,1700.7,1700.7,4.017,7.292,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.0,2.0,1354.7,998.0,11171.6,3093.4,1632.6,2107.2,2107.2,3.816,7.196,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.0,6.0,1354.7,998.0,11171.6,3093.4,1660.6,2298.4,2298.4,3.978,8.314,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.0,2.0,1354.7,998.0,11171.6,3093.4,1643.1,2161.2,2161.2,3.814,7.196,0.0
+base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.0,6.0,1354.7,998.0,11171.6,3093.4,1823.5,3293.8,3293.8,3.904,8.314,0.0
+base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.0,6.0,1354.7,998.0,11171.6,3093.4,1653.7,2259.1,2259.1,3.904,8.314,0.0
+base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1474.9,1412.1,1474.9,3.808,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1487.0,1412.1,1487.0,3.976,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1500.4,1412.1,1500.4,3.812,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1613.4,1412.1,1613.4,3.812,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1502.6,1412.1,1502.6,3.812,0.0,0.0
+base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1492.9,1412.1,1492.9,3.902,0.0,0.0
+base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,2.0,1354.7,998.0,11171.5,3093.4,1617.6,2202.3,2202.3,0.0,7.196,0.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,6.0,1354.7,998.0,11171.5,3093.4,1642.4,2274.6,2274.6,0.0,8.314,0.0
+base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,2.0,1354.7,998.0,11171.5,3093.4,1627.0,2269.8,2269.8,0.0,7.196,0.0
+base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,6.0,1354.7,998.0,11171.5,3093.4,1787.3,3209.8,3209.8,0.0,8.314,0.0
+base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,6.0,1354.7,998.0,11171.5,3093.4,1636.0,2235.8,2235.8,0.0,8.314,0.0
+base-bldgtype-mf-unit-shared-generator.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1603.5,2035.3,2035.3,3.814,7.788,0.0
+base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1705.4,2025.2,2025.2,3.814,7.788,0.0
+base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.0,0.0,1354.7,998.0,11171.9,3093.5,928.0,1598.0,1598.0,3.861,7.816,0.0
+base-bldgtype-mf-unit-shared-laundry-room.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,919.2,1586.4,1586.4,4.011,7.695,0.0
+base-bldgtype-mf-unit-shared-mechvent-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1802.8,2328.3,2328.3,7.899,9.054,0.0
+base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1593.9,2159.1,2159.1,4.194,7.952,0.0
+base-bldgtype-mf-unit-shared-mechvent.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1564.2,2140.7,2140.7,6.015,8.573,0.0
+base-bldgtype-mf-unit-shared-pv-battery.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1649.1,2045.5,2045.5,3.814,7.788,44.391
+base-bldgtype-mf-unit-shared-pv.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1603.5,2035.3,2035.3,3.814,7.788,0.0
+base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,0.0,0.0,1354.7,998.0,10607.3,2937.1,1287.4,1883.9,1883.9,5.887,7.73,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,0.0,0.0,732.1,456.9,3657.4,0.0,818.9,1475.4,1475.4,4.341,7.252,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,949.7,1631.8,1631.8,4.004,7.812,0.0
+base-bldgtype-mf-unit-shared-water-heater-recirc.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,949.7,1631.8,1631.8,4.004,7.812,0.0
+base-bldgtype-mf-unit-shared-water-heater.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,913.0,1595.2,1595.2,4.004,7.812,0.0
+base-bldgtype-mf-unit.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1603.5,2035.3,2035.3,3.814,7.788,0.0
+base-bldgtype-mf-whole-building.xml,0.0,1.0,8128.5,5988.0,67057.1,16864.7,22122.0,16427.5,22122.0,53.957,57.134,0.0
+base-bldgtype-sfa-unit-2stories.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2027.7,3147.3,3147.3,17.84,15.285,0.0
+base-bldgtype-sfa-unit-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2100.0,4529.8,4529.8,36.753,28.623,0.0
+base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1759.3,2653.1,2653.1,13.219,10.326,0.0
+base-bldgtype-sfa-unit.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1759.3,2653.1,2653.1,13.219,10.326,0.0
+base-dhw-combi-tankless-outside.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1295.6,1163.0,1295.6,16.826,0.0,0.0
+base-dhw-combi-tankless.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1297.1,1163.0,1297.1,17.407,0.0,0.0
+base-dhw-desuperheater-2-speed.xml,0.0,0.0,1354.7,998.0,11183.2,2566.2,1972.5,2856.0,2856.0,0.0,18.981,0.0
+base-dhw-desuperheater-gshp.xml,0.0,0.0,1354.7,998.0,11187.2,2567.1,3399.5,2493.1,3399.5,22.039,16.279,0.0
+base-dhw-desuperheater-hpwh.xml,0.0,0.0,1354.6,997.9,11147.9,2558.1,1813.0,3190.8,3190.8,23.231,18.741,0.0
+base-dhw-desuperheater-tankless.xml,0.0,0.0,1354.7,998.0,11133.8,2554.9,1833.3,3296.7,3296.7,0.0,18.328,0.0
+base-dhw-desuperheater-var-speed.xml,0.0,0.0,1354.7,998.0,11183.8,2566.3,1972.5,2657.1,2657.1,0.0,18.722,0.0
+base-dhw-desuperheater.xml,0.0,0.0,1354.7,998.0,11184.0,2566.4,1971.5,3308.4,3308.4,0.0,18.429,0.0
+base-dhw-dwhr.xml,0.0,0.0,1354.7,998.0,10014.1,2297.9,2000.7,3435.7,3435.7,22.814,18.188,0.0
+base-dhw-indirect-detailed-setpoints.xml,0.0,0.0,1154.3,855.1,9363.6,2148.7,1296.3,1163.4,1296.3,17.02,0.0,0.0
+base-dhw-indirect-dse.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0
+base-dhw-indirect-outside.xml,0.0,0.0,1066.2,768.7,8830.9,2026.4,1295.6,1163.0,1295.6,16.826,0.0,0.0
+base-dhw-indirect-standbyloss.xml,0.0,0.0,1060.2,765.1,8818.5,2023.6,1296.1,1163.4,1296.1,17.043,0.0,0.0
+base-dhw-indirect-with-solar-fraction.xml,0.0,0.0,390.1,285.6,3158.3,724.7,1296.8,1163.1,1296.8,17.31,0.0,0.0
+base-dhw-indirect.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0
+base-dhw-jacket-electric.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2041.2,3435.6,3435.6,22.868,18.138,0.0
+base-dhw-jacket-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.5,3168.0,3168.0,23.334,18.556,0.0
+base-dhw-jacket-hpwh.xml,0.0,0.0,1354.7,998.0,10786.2,2475.1,1807.1,3105.1,3105.1,24.898,18.046,0.0
+base-dhw-jacket-indirect.xml,0.0,0.0,1075.4,776.5,8919.9,2046.8,1296.4,1163.3,1296.4,17.165,0.0,0.0
+base-dhw-low-flow-fixtures.xml,0.0,0.0,1354.7,998.0,10829.6,2485.1,2049.5,3580.7,3580.7,22.815,18.188,0.0
+base-dhw-multiple.xml,0.0,0.0,472.0,347.7,3918.9,899.3,2066.1,1773.3,2066.1,17.068,0.0,0.0
+base-dhw-none.xml,0.0,0.0,0.0,0.0,0.0,0.0,1287.4,2993.7,2993.7,22.914,17.862,0.0
+base-dhw-recirc-demand-scheduled.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2042.6,3442.1,3442.1,22.815,18.188,0.0
+base-dhw-recirc-demand.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2042.6,3442.1,3442.1,22.815,18.188,0.0
+base-dhw-recirc-manual.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2027.4,3427.5,3427.5,22.815,18.188,0.0
+base-dhw-recirc-nocontrol.xml,0.0,0.0,1354.7,998.0,11171.5,2623.0,2975.8,4092.6,4092.6,22.814,18.188,0.0
+base-dhw-recirc-temperature.xml,0.0,0.0,1354.7,998.0,11171.5,2623.0,2673.5,3922.7,3922.7,22.814,18.188,0.0
+base-dhw-recirc-timer.xml,0.0,0.0,1354.7,998.0,11171.5,2623.0,2975.8,4092.6,4092.6,22.814,18.188,0.0
+base-dhw-solar-direct-evacuated-tube.xml,0.0,0.0,1354.6,997.9,10983.6,2520.4,2007.2,3161.3,3161.3,22.815,18.201,0.0
+base-dhw-solar-direct-flat-plate.xml,0.0,0.0,1354.3,997.6,10193.3,2339.0,2010.4,3132.4,3132.4,22.817,18.23,0.0
+base-dhw-solar-direct-ics.xml,0.0,0.0,1354.7,997.9,10725.6,2461.2,2045.5,3163.4,3163.4,22.816,18.22,0.0
+base-dhw-solar-fraction.xml,0.0,0.0,474.2,349.3,3910.1,897.2,1697.1,3369.3,3369.3,22.881,18.125,0.0
+base-dhw-solar-indirect-flat-plate.xml,0.0,0.0,1354.2,997.5,10326.4,2369.6,2013.6,3161.3,3161.3,22.848,18.496,0.0
+base-dhw-solar-thermosyphon-flat-plate.xml,0.0,0.0,1354.4,997.7,10243.7,2350.6,2021.1,3132.2,3132.2,22.817,18.228,0.0
+base-dhw-tank-coal.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.0,3177.9,3177.9,23.229,18.646,0.0
+base-dhw-tank-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11206.9,2571.6,2496.3,3464.0,3464.0,22.792,18.183,0.0
+base-dhw-tank-elec-uef.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2033.7,3433.3,3433.3,22.803,18.2,0.0
+base-dhw-tank-gas-outside.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-dhw-tank-gas-uef-fhr.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.4,3171.1,3171.1,23.299,18.584,0.0
+base-dhw-tank-gas-uef.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.4,3171.1,3171.1,23.299,18.584,0.0
+base-dhw-tank-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.0,3177.9,3177.9,23.229,18.646,0.0
+base-dhw-tank-heat-pump-detailed-schedules.xml,0.0,0.0,1354.7,998.0,9993.5,2293.2,1781.9,3101.9,3101.9,26.561,17.949,0.0
+base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,0.0,0.0,1354.7,998.0,10746.1,2465.9,1774.3,3459.3,3459.3,25.073,18.126,0.0
+base-dhw-tank-heat-pump-outside.xml,0.0,0.0,1354.7,998.0,11025.2,2529.9,2973.7,3120.1,3120.1,22.916,18.091,0.0
+base-dhw-tank-heat-pump-uef.xml,0.0,0.0,1354.7,998.0,10746.1,2465.9,1774.3,3459.3,3459.3,25.073,18.126,0.0
+base-dhw-tank-heat-pump-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3821.8,877.0,1807.8,3127.8,3127.8,24.978,18.16,0.0
+base-dhw-tank-heat-pump-with-solar.xml,0.0,0.0,1354.4,997.7,11685.0,2681.4,1821.5,3176.6,3176.6,23.455,18.611,0.0
+base-dhw-tank-heat-pump.xml,0.0,0.0,1354.7,998.0,10842.4,2488.0,1819.6,3410.1,3410.1,23.265,18.306,0.0
+base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,0.0,0.0,1354.7,998.0,10786.3,2475.1,4730.2,5466.5,5466.5,31.013,18.718,0.0
+base-dhw-tank-model-type-stratified.xml,0.0,0.0,1354.7,998.0,10766.1,2470.5,1904.9,3472.7,3472.7,22.913,18.094,0.0
+base-dhw-tank-oil.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.0,3177.9,3177.9,23.229,18.646,0.0
+base-dhw-tank-wood.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1390.0,3177.9,3177.9,23.229,18.646,0.0
+base-dhw-tankless-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11342.7,2602.8,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-dhw-tankless-electric-outside.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1915.2,3513.2,3513.2,22.916,18.091,0.0
+base-dhw-tankless-electric-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1909.0,3508.7,3508.7,22.916,18.091,0.0
+base-dhw-tankless-electric.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1915.2,3513.2,3513.2,22.916,18.091,0.0
+base-dhw-tankless-gas-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-dhw-tankless-gas-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3909.2,897.0,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-dhw-tankless-gas-with-solar.xml,0.0,0.0,1344.7,989.2,9817.2,2252.7,1388.4,3146.2,3146.2,22.948,18.357,0.0
+base-dhw-tankless-gas.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-dhw-tankless-propane.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1388.6,3117.3,3117.3,22.916,18.091,0.0
+base-enclosure-2stories-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2524.9,2203.0,4652.3,4652.3,30.737,27.813,0.0
+base-enclosure-2stories.xml,0.0,0.0,1354.7,998.0,11171.5,2410.9,2423.5,4826.4,4826.4,33.982,27.99,0.0
+base-enclosure-beds-1.xml,0.0,0.0,939.6,637.2,6162.0,1598.4,1664.1,3249.7,3249.7,23.184,17.568,0.0
+base-enclosure-beds-2.xml,0.0,0.0,1147.2,817.6,8666.7,2153.4,1981.3,3288.7,3288.7,22.999,17.879,0.0
+base-enclosure-beds-4.xml,0.0,0.0,1562.3,1178.4,13676.3,2901.1,2082.5,3802.4,3802.4,22.632,18.495,0.0
+base-enclosure-beds-5.xml,0.0,0.0,1769.9,1358.7,16181.1,3193.2,2407.6,3950.3,3950.3,22.447,18.802,0.0
+base-enclosure-ceilingtypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2065.0,3759.1,3759.1,29.523,19.622,0.0
+base-enclosure-floortypes.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1721.7,3493.8,3493.8,29.148,21.416,0.0
+base-enclosure-garage.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2023.9,2875.5,2875.5,19.149,12.341,0.0
+base-enclosure-infil-ach-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-enclosure-infil-cfm-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-enclosure-infil-cfm50.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-enclosure-infil-ela.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2057.7,3535.9,3535.9,27.655,19.053,0.0
+base-enclosure-infil-flue.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2041.4,3799.4,3799.4,23.516,18.374,0.0
+base-enclosure-infil-natural-ach.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2074.0,3531.1,3531.1,27.417,19.008,0.0
+base-enclosure-infil-natural-cfm.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2074.0,3531.1,3531.1,27.417,19.008,0.0
+base-enclosure-orientations.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.3,3775.5,3775.5,22.829,18.154,0.0
+base-enclosure-overhangs.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2038.8,3380.8,3380.8,22.769,17.643,0.0
+base-enclosure-rooftypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2050.7,3680.2,3680.2,22.672,17.332,0.0
+base-enclosure-skylights-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2044.2,3842.6,3842.6,24.529,21.363,0.0
+base-enclosure-skylights-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2054.1,3806.9,3806.9,23.433,18.448,0.0
+base-enclosure-skylights-storms.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2053.3,4005.9,4005.9,23.402,20.566,0.0
+base-enclosure-skylights.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2052.8,3878.8,3878.8,23.319,20.847,0.0
+base-enclosure-split-level.xml,0.0,0.0,1354.7,998.0,11171.6,2952.8,1661.4,2825.1,2825.1,13.591,13.312,0.0
+base-enclosure-thermal-mass.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2050.5,3404.5,3404.5,22.694,17.844,0.0
+base-enclosure-walltypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2064.7,2845.1,2845.1,25.586,12.317,0.0
+base-enclosure-windows-natural-ventilation-availability.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.7,3383.6,3383.6,22.816,17.651,0.0
+base-enclosure-windows-none.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2026.1,2428.3,2428.3,17.121,8.237,0.0
+base-enclosure-windows-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2055.9,3745.9,3745.9,27.509,21.025,0.0
+base-enclosure-windows-shading-seasons.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.7,3779.1,3779.1,22.816,18.188,0.0
+base-enclosure-windows-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.9,2928.6,2928.6,22.859,10.848,0.0
+base-enclosure-windows-storms.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2039.1,3562.3,3562.3,22.283,16.278,0.0
+base-foundation-ambient.xml,0.0,1.0,1354.7,998.0,11171.5,2752.7,1689.2,3494.2,3494.2,20.426,21.544,0.0
+base-foundation-basement-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2792.6,1834.4,3670.3,3670.3,21.184,18.564,0.0
+base-foundation-belly-wing-no-skirt.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1681.3,3199.8,3199.8,25.4,18.461,0.0
+base-foundation-belly-wing-skirt.xml,0.0,0.0,1354.7,998.0,11171.6,2752.7,1680.5,3216.2,3216.2,25.24,18.419,0.0
+base-foundation-complex.xml,0.0,2.0,1354.7,998.0,11171.6,2563.5,2078.8,4106.8,4106.8,33.037,21.717,0.0
+base-foundation-conditioned-basement-slab-insulation-full.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2049.4,3628.8,3628.8,22.089,19.916,0.0
+base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2035.4,3671.0,3671.0,22.55,19.026,0.0
+base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2040.5,3659.9,3659.9,23.001,18.018,0.0
+base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1665.1,2797.9,2797.9,16.166,11.78,0.0
+base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1649.6,2889.8,2889.8,15.635,15.596,0.0
+base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1652.0,2907.0,2907.0,13.212,13.37,0.0
+base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1639.7,2985.0,2985.0,16.758,16.477,0.0
+base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1644.8,2868.9,2868.9,15.087,14.374,0.0
+base-foundation-unconditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1663.1,2703.1,2703.1,17.247,12.858,0.0
+base-foundation-unconditioned-basement.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1646.0,3238.1,3238.1,15.847,15.745,0.0
+base-foundation-unvented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1656.8,2844.2,2844.2,14.764,15.263,0.0
+base-foundation-vented-crawlspace-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1674.1,3132.6,3132.6,16.627,16.433,0.0
+base-foundation-vented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1673.7,3100.7,3100.7,16.634,16.104,0.0
+base-foundation-walkout-basement.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2068.7,3982.0,3982.0,26.434,20.057,0.0
+base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6657.8,3529.0,6657.8,23.137,14.461,0.0
+base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3316.8,3316.8,0.0,15.634,0.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6904.8,3688.3,6904.8,23.921,15.915,0.0
+base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7178.1,1786.0,7178.1,24.931,0.0,0.0
+base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,150.0,0.0,1354.7,998.0,11171.6,2563.5,10160.7,3606.0,10160.7,37.134,15.76,0.0
+base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6904.8,3682.7,6904.8,23.921,15.915,0.0
+base-hvac-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6904.8,3688.3,6904.8,23.921,15.915,0.0
+base-hvac-air-to-air-heat-pump-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6884.8,3238.8,6884.8,23.913,16.808,0.0
+base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4127.3,2922.4,4127.3,21.901,15.371,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1.0,5.0,1354.7,998.0,11171.5,2563.5,3139.8,2982.6,3139.8,22.566,17.524,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,230.0,5.0,1354.7,998.0,11171.6,2563.5,3049.0,3136.0,3136.0,22.812,17.524,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1.0,5.0,1354.7,998.0,11171.6,2563.5,3139.8,3319.9,3319.9,22.566,17.524,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,3045.8,2948.7,3045.8,22.52,16.639,0.0
+base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,2.0,5.0,1354.7,998.0,11171.6,2563.5,3136.6,3319.8,3319.8,26.099,17.507,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5354.9,4014.2,5354.9,24.122,17.976,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4957.1,3513.2,4957.1,23.91,17.735,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4973.9,3850.5,4973.9,23.91,17.728,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,8197.5,3760.1,8197.5,23.907,17.785,0.0
+base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4957.2,3847.5,4957.2,23.91,17.727,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,166.5,0.167,1354.7,998.0,11171.7,2563.6,9708.8,4504.3,9708.8,30.304,19.789,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,23.0,1.0,1354.7,998.0,11171.6,2563.5,5178.5,4008.1,5178.5,26.095,19.032,0.0
+base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,156.0,2.0,1354.7,998.0,11171.6,2563.5,5568.4,3148.4,5568.4,24.296,17.734,0.0
+base-hvac-air-to-air-heat-pump-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5637.1,3148.5,5637.1,23.957,17.735,0.0
+base-hvac-autosize-sizing-controls.xml,0.0,0.0,2180.8,1715.9,21140.4,3685.8,2485.0,3558.2,3558.2,17.077,14.804,0.0
+base-hvac-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2052.9,3847.1,3847.1,23.514,18.914,0.0
+base-hvac-boiler-coal-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0
+base-hvac-boiler-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5998.2,1785.9,5998.2,16.778,0.0,0.0
+base-hvac-boiler-gas-central-ac-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2008.6,3946.6,3946.6,16.778,18.316,0.0
+base-hvac-boiler-gas-only-pilot.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0
+base-hvac-boiler-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0
+base-hvac-boiler-oil-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0
+base-hvac-boiler-propane-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0
+base-hvac-boiler-wood-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0
+base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3333.2,3333.2,0.0,15.592,0.0
+base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3567.4,3567.4,0.0,18.008,0.0
+base-hvac-central-ac-only-1-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3573.7,3573.7,0.0,18.008,0.0
+base-hvac-central-ac-only-2-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3128.1,3128.1,0.0,18.648,0.0
+base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,4187.1,4187.1,0.0,18.724,0.0
+base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3539.6,3539.6,0.0,17.476,0.0
+base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,2.0,1354.7,998.0,11171.5,2563.5,1974.9,3289.5,3289.5,0.0,20.481,0.0
+base-hvac-central-ac-only-var-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2930.3,2930.3,0.0,18.373,0.0
+base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7248.1,3946.7,7248.1,24.931,18.317,0.0
+base-hvac-dse.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2034.7,3107.2,3107.2,16.762,12.093,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3486.9,3688.3,3688.3,23.912,15.915,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3333.7,3688.3,3688.3,23.91,15.915,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2762.3,3238.8,3238.8,23.909,16.808,0.0
+base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2723.6,3148.5,3148.5,23.953,17.735,0.0
+base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2607.6,2863.5,2863.5,19.184,14.06,0.0
+base-hvac-ducts-area-fractions.xml,6.0,44.0,1354.7,998.0,11171.5,2410.9,2472.5,5246.0,5246.0,49.16,36.136,0.0
+base-hvac-ducts-area-multipliers.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2048.9,3724.2,3724.2,22.131,17.677,0.0
+base-hvac-ducts-buried.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.7,3457.1,3457.1,20.028,15.248,0.0
+base-hvac-ducts-defaults.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3014.1,3821.1,3821.1,18.702,12.093,0.0
+base-hvac-ducts-effective-rvalue.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3778.6,3778.6,22.812,18.183,0.0
+base-hvac-ducts-leakage-cfm50.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3894.5,3894.5,23.039,19.275,0.0
+base-hvac-ducts-leakage-percent.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2054.4,3943.2,3943.2,24.06,19.69,0.0
+base-hvac-elec-resistance-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5891.0,1785.9,5891.0,16.762,0.0,0.0
+base-hvac-evap-cooler-furnace-gas.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2044.2,2173.5,2173.5,23.735,12.103,0.0
+base-hvac-evap-cooler-only-ducted.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,2060.8,2060.8,0.0,14.893,0.0
+base-hvac-evap-cooler-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,2033.1,2033.1,0.0,11.885,0.0
+base-hvac-fireplace-wood-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1931.3,1806.9,1931.3,17.317,0.0,0.0
+base-hvac-floor-furnace-propane-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1931.3,1806.9,1931.3,17.317,0.0,0.0
+base-hvac-furnace-coal-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-elec-central-ac-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7710.2,3779.1,7710.2,22.816,18.188,0.0
+base-hvac-furnace-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,8063.9,1786.0,8063.9,23.735,0.0,0.0
+base-hvac-furnace-gas-central-ac-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3497.1,3497.1,22.816,18.899,0.0
+base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,0.0,5.0,1354.7,998.0,11171.6,2563.5,2051.1,3607.4,3607.4,22.816,20.749,0.0
+base-hvac-furnace-gas-central-ac-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3291.3,3291.3,22.816,18.627,0.0
+base-hvac-furnace-gas-only-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2036.1,1786.0,2036.1,21.995,0.0,0.0
+base-hvac-furnace-gas-only-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1987.1,1804.8,1987.1,18.088,0.0,0.0
+base-hvac-furnace-gas-only-pilot.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-gas-room-ac.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2044.2,3821.2,3821.2,23.735,12.094,0.0
+base-hvac-furnace-oil-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-propane-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-wood-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2043.5,1786.0,2043.5,23.735,0.0,0.0
+base-hvac-furnace-x3-dse.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2039.1,3107.2,3107.2,16.929,12.093,0.0
+base-hvac-ground-to-air-heat-pump-cooling-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,2936.6,2936.6,0.0,15.73,0.0
+base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,3354.7,2901.4,3354.7,22.939,15.862,0.0
+base-hvac-ground-to-air-heat-pump-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3492.4,1786.0,3492.4,22.62,0.0,0.0
+base-hvac-ground-to-air-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3392.2,3066.8,3392.2,21.927,15.9,0.0
+base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7012.6,3929.7,7012.6,24.45,16.933,0.0
+base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6999.7,3529.8,6999.7,24.446,18.106,0.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5724.4,4462.9,5724.4,24.444,18.252,0.0
+base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6292.3,3507.5,6292.3,24.484,18.234,0.0
+base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,0.0,2.0,1354.7,998.0,11171.6,2563.5,2034.7,3987.6,3987.6,23.865,18.367,0.0
+base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,0.0,2.0,1354.7,998.0,11171.6,2563.5,2034.6,3690.7,3690.7,23.859,18.587,0.0
+base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2034.6,3573.3,3573.3,23.859,19.022,0.0
+base-hvac-install-quality-furnace-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2018.2,1786.0,2018.2,25.062,0.0,0.0
+base-hvac-install-quality-ground-to-air-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3671.6,3299.6,3671.6,22.949,17.032,0.0
+base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3047.3,3047.3,0.0,14.164,0.0
+base-hvac-install-quality-mini-split-heat-pump-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4873.5,3229.1,4873.5,19.336,14.183,0.0
+base-hvac-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2678.8,2678.8,0.0,14.006,0.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2752.8,2752.8,0.0,11.875,0.0
+base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2769.6,2769.6,0.0,11.877,0.0
+base-hvac-mini-split-air-conditioner-only-ductless.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2667.8,2667.8,0.0,11.871,0.0
+base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,2499.9,2499.9,0.0,13.84,0.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4121.3,3248.1,4121.3,19.307,14.146,0.0
+base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4027.6,3111.5,4027.6,19.126,14.032,0.0
+base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,97.0,0.0,1354.7,998.0,11171.6,2563.5,4116.0,1785.9,4116.0,19.491,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4354.4,1785.9,4354.4,19.362,0.0,0.0
+base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,100.0,0.0,1354.7,998.0,11171.6,2563.5,4081.6,2863.5,4081.6,19.316,14.06,0.0
+base-hvac-mini-split-heat-pump-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4294.7,2863.5,4294.7,19.185,14.06,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4413.1,3100.7,4413.1,16.762,12.092,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,2953.5,3118.8,3118.8,17.599,12.255,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1.0,0.0,1354.7,998.0,11171.6,2563.5,2871.7,3100.7,3100.7,17.829,12.092,0.0
+base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,2953.5,3118.8,3118.8,17.317,12.255,0.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3886.0,2977.6,3886.0,16.761,12.09,0.0
+base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3944.1,3072.0,3944.1,16.761,12.089,0.0
+base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3627.2,2872.5,3627.2,16.762,12.089,0.0
+base-hvac-mini-split-heat-pump-ductless.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3627.2,2872.5,3627.2,16.762,12.089,0.0
+base-hvac-multiple.xml,0.0,9.0,1354.7,998.0,11171.6,2563.5,6969.6,4418.8,6969.6,40.798,22.328,0.0
+base-hvac-none.xml,0.0,0.0,1354.7,998.0,8369.9,2062.4,1265.8,1194.4,1265.8,0.0,0.0,0.0
+base-hvac-ptac-with-heating-electricity.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5891.0,3388.5,5891.0,16.762,12.093,0.0
+base-hvac-ptac-with-heating-natural-gas.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1931.3,3388.5,3388.5,16.762,12.093,0.0
+base-hvac-ptac.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3030.3,3030.3,0.0,11.876,0.0
+base-hvac-pthp-heating-capacity-17f.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4855.9,3369.3,4855.9,16.762,12.093,0.0
+base-hvac-pthp.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4855.9,3369.3,4855.9,16.762,12.093,0.0
+base-hvac-room-ac-only-33percent.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,2330.4,2330.4,0.0,3.919,0.0
+base-hvac-room-ac-only-ceer.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3461.5,3461.5,0.0,11.876,0.0
+base-hvac-room-ac-only-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1924.2,3578.9,3578.9,0.0,10.701,0.0
+base-hvac-room-ac-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3457.6,3457.6,0.0,11.876,0.0
+base-hvac-room-ac-with-heating.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5891.0,3821.1,5891.0,16.762,12.093,0.0
+base-hvac-room-ac-with-reverse-cycle.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4855.9,3369.3,4855.9,16.762,12.093,0.0
+base-hvac-seasons.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2051.0,3440.9,3440.9,22.816,18.181,0.0
+base-hvac-setpoints-daily-schedules.xml,105.0,37.0,1354.7,998.0,11171.5,2563.5,2071.1,3769.9,3769.9,34.895,20.609,0.0
+base-hvac-setpoints-daily-setbacks.xml,0.0,5.0,1354.7,998.0,11171.6,2563.5,2047.5,3739.1,3739.1,25.066,21.068,0.0
+base-hvac-setpoints.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2011.6,3386.7,3386.7,17.418,15.457,0.0
+base-hvac-space-heater-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1931.2,1785.9,1931.2,16.762,0.0,0.0
+base-hvac-stove-oil-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1943.3,1806.9,1943.3,17.317,0.0,0.0
+base-hvac-stove-wood-pellets-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1943.3,1806.9,1943.3,17.317,0.0,0.0
+base-hvac-undersized.xml,3731.0,2465.0,1354.7,998.0,11171.6,2563.5,1995.6,1985.7,2019.1,3.829,2.736,0.0
+base-hvac-wall-furnace-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5986.5,1785.9,5986.5,16.762,0.0,0.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv
similarity index 86%
rename from resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv
rename to resources/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv
index ed98d3561d..ba4b21fb9c 100644
--- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv
@@ -1,4 +1,4 @@
-HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: Total (USD),Net Metering w/ Wholesale Excess Rate: Total (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Net Metering w/ Retail Excess Rate: Total (USD),Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (USD),Feed-In Tariff: Electricity: PV Credit (USD),Feed-In Tariff: Electricity: Total (USD),Feed-In Tariff: Natural Gas: Fixed (USD),Feed-In Tariff: Natural Gas: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD)
+HPXML,Utility Bills: Bills: Total (USD),Utility Bills: Bills: Electricity: Fixed (USD),Utility Bills: Bills: Electricity: Energy (USD),Utility Bills: Bills: Electricity: PV Credit (USD),Utility Bills: Bills: Electricity: Total (USD),Utility Bills: Bills: Natural Gas: Fixed (USD),Utility Bills: Bills: Natural Gas: Energy (USD),Utility Bills: Bills: Natural Gas: Total (USD),Utility Bills: Bills: Fuel Oil: Fixed (USD),Utility Bills: Bills: Fuel Oil: Energy (USD),Utility Bills: Bills: Fuel Oil: Total (USD),Utility Bills: Bills: Propane: Fixed (USD),Utility Bills: Bills: Propane: Energy (USD),Utility Bills: Bills: Propane: Total (USD),Utility Bills: Bills: Wood Cord: Fixed (USD),Utility Bills: Bills: Wood Cord: Energy (USD),Utility Bills: Bills: Wood Cord: Total (USD),Utility Bills: Bills: Wood Pellets: Fixed (USD),Utility Bills: Bills: Wood Pellets: Energy (USD),Utility Bills: Bills: Wood Pellets: Total (USD),Utility Bills: Bills: Coal: Fixed (USD),Utility Bills: Bills: Coal: Energy (USD),Utility Bills: Bills: Coal: Total (USD),Utility Bills: Tiered: Total (USD),Utility Bills: Tiered: Electricity: Fixed (USD),Utility Bills: Tiered: Electricity: Energy (USD),Utility Bills: Tiered: Electricity: PV Credit (USD),Utility Bills: Tiered: Electricity: Total (USD),Utility Bills: Tiered: Natural Gas: Fixed (USD),Utility Bills: Tiered: Natural Gas: Energy (USD),Utility Bills: Tiered: Natural Gas: Total (USD),Utility Bills: Tiered: Fuel Oil: Fixed (USD),Utility Bills: Tiered: Fuel Oil: Energy (USD),Utility Bills: Tiered: Fuel Oil: Total (USD),Utility Bills: Tiered: Propane: Fixed (USD),Utility Bills: Tiered: Propane: Energy (USD),Utility Bills: Tiered: Propane: Total (USD),Utility Bills: Tiered: Wood Cord: Fixed (USD),Utility Bills: Tiered: Wood Cord: Energy (USD),Utility Bills: Tiered: Wood Cord: Total (USD),Utility Bills: Tiered: Wood Pellets: Fixed (USD),Utility Bills: Tiered: Wood Pellets: Energy (USD),Utility Bills: Tiered: Wood Pellets: Total (USD),Utility Bills: Tiered: Coal: Fixed (USD),Utility Bills: Tiered: Coal: Energy (USD),Utility Bills: Tiered: Coal: Total (USD),Utility Bills: TOU: Total (USD),Utility Bills: TOU: Electricity: Fixed (USD),Utility Bills: TOU: Electricity: Energy (USD),Utility Bills: TOU: Electricity: PV Credit (USD),Utility Bills: TOU: Electricity: Total (USD),Utility Bills: TOU: Natural Gas: Fixed (USD),Utility Bills: TOU: Natural Gas: Energy (USD),Utility Bills: TOU: Natural Gas: Total (USD),Utility Bills: TOU: Fuel Oil: Fixed (USD),Utility Bills: TOU: Fuel Oil: Energy (USD),Utility Bills: TOU: Fuel Oil: Total (USD),Utility Bills: TOU: Propane: Fixed (USD),Utility Bills: TOU: Propane: Energy (USD),Utility Bills: TOU: Propane: Total (USD),Utility Bills: TOU: Wood Cord: Fixed (USD),Utility Bills: TOU: Wood Cord: Energy (USD),Utility Bills: TOU: Wood Cord: Total (USD),Utility Bills: TOU: Wood Pellets: Fixed (USD),Utility Bills: TOU: Wood Pellets: Energy (USD),Utility Bills: TOU: Wood Pellets: Total (USD),Utility Bills: TOU: Coal: Fixed (USD),Utility Bills: TOU: Coal: Energy (USD),Utility Bills: TOU: Coal: Total (USD),Utility Bills: Tiered and TOU: Total (USD),Utility Bills: Tiered and TOU: Electricity: Fixed (USD),Utility Bills: Tiered and TOU: Electricity: Energy (USD),Utility Bills: Tiered and TOU: Electricity: PV Credit (USD),Utility Bills: Tiered and TOU: Electricity: Total (USD),Utility Bills: Tiered and TOU: Natural Gas: Fixed (USD),Utility Bills: Tiered and TOU: Natural Gas: Energy (USD),Utility Bills: Tiered and TOU: Natural Gas: Total (USD),Utility Bills: Tiered and TOU: Fuel Oil: Fixed (USD),Utility Bills: Tiered and TOU: Fuel Oil: Energy (USD),Utility Bills: Tiered and TOU: Fuel Oil: Total (USD),Utility Bills: Tiered and TOU: Propane: Fixed (USD),Utility Bills: Tiered and TOU: Propane: Energy (USD),Utility Bills: Tiered and TOU: Propane: Total (USD),Utility Bills: Tiered and TOU: Wood Cord: Fixed (USD),Utility Bills: Tiered and TOU: Wood Cord: Energy (USD),Utility Bills: Tiered and TOU: Wood Cord: Total (USD),Utility Bills: Tiered and TOU: Wood Pellets: Fixed (USD),Utility Bills: Tiered and TOU: Wood Pellets: Energy (USD),Utility Bills: Tiered and TOU: Wood Pellets: Total (USD),Utility Bills: Tiered and TOU: Coal: Fixed (USD),Utility Bills: Tiered and TOU: Coal: Energy (USD),Utility Bills: Tiered and TOU: Coal: Total (USD),Utility Bills: Real-Time Pricing: Total (USD),Utility Bills: Real-Time Pricing: Electricity: Fixed (USD),Utility Bills: Real-Time Pricing: Electricity: Energy (USD),Utility Bills: Real-Time Pricing: Electricity: PV Credit (USD),Utility Bills: Real-Time Pricing: Electricity: Total (USD),Utility Bills: Real-Time Pricing: Natural Gas: Fixed (USD),Utility Bills: Real-Time Pricing: Natural Gas: Energy (USD),Utility Bills: Real-Time Pricing: Natural Gas: Total (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Fixed (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Energy (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Total (USD),Utility Bills: Real-Time Pricing: Propane: Fixed (USD),Utility Bills: Real-Time Pricing: Propane: Energy (USD),Utility Bills: Real-Time Pricing: Propane: Total (USD),Utility Bills: Real-Time Pricing: Wood Cord: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Cord: Energy (USD),Utility Bills: Real-Time Pricing: Wood Cord: Total (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Energy (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Total (USD),Utility Bills: Real-Time Pricing: Coal: Fixed (USD),Utility Bills: Real-Time Pricing: Coal: Energy (USD),Utility Bills: Real-Time Pricing: Coal: Total (USD),Utility Bills: Simple: Total (USD),Utility Bills: Simple: Electricity: Fixed (USD),Utility Bills: Simple: Electricity: Energy (USD),Utility Bills: Simple: Electricity: PV Credit (USD),Utility Bills: Simple: Electricity: Total (USD),Utility Bills: Simple: Natural Gas: Fixed (USD),Utility Bills: Simple: Natural Gas: Energy (USD),Utility Bills: Simple: Natural Gas: Total (USD),Utility Bills: Simple: Fuel Oil: Fixed (USD),Utility Bills: Simple: Fuel Oil: Energy (USD),Utility Bills: Simple: Fuel Oil: Total (USD),Utility Bills: Simple: Propane: Fixed (USD),Utility Bills: Simple: Propane: Energy (USD),Utility Bills: Simple: Propane: Total (USD),Utility Bills: Simple: Wood Cord: Fixed (USD),Utility Bills: Simple: Wood Cord: Energy (USD),Utility Bills: Simple: Wood Cord: Total (USD),Utility Bills: Simple: Wood Pellets: Fixed (USD),Utility Bills: Simple: Wood Pellets: Energy (USD),Utility Bills: Simple: Wood Pellets: Total (USD),Utility Bills: Simple: Coal: Fixed (USD),Utility Bills: Simple: Coal: Energy (USD),Utility Bills: Simple: Coal: Total (USD),Utility Bills: Detailed: Total (USD),Utility Bills: Detailed: Electricity: Fixed (USD),Utility Bills: Detailed: Electricity: Energy (USD),Utility Bills: Detailed: Electricity: PV Credit (USD),Utility Bills: Detailed: Electricity: Total (USD),Utility Bills: Detailed: Natural Gas: Fixed (USD),Utility Bills: Detailed: Natural Gas: Energy (USD),Utility Bills: Detailed: Natural Gas: Total (USD),Utility Bills: Detailed: Fuel Oil: Fixed (USD),Utility Bills: Detailed: Fuel Oil: Energy (USD),Utility Bills: Detailed: Fuel Oil: Total (USD),Utility Bills: Detailed: Propane: Fixed (USD),Utility Bills: Detailed: Propane: Energy (USD),Utility Bills: Detailed: Propane: Total (USD),Utility Bills: Detailed: Wood Cord: Fixed (USD),Utility Bills: Detailed: Wood Cord: Energy (USD),Utility Bills: Detailed: Wood Cord: Total (USD),Utility Bills: Detailed: Wood Pellets: Fixed (USD),Utility Bills: Detailed: Wood Pellets: Energy (USD),Utility Bills: Detailed: Wood Pellets: Total (USD),Utility Bills: Detailed: Coal: Fixed (USD),Utility Bills: Detailed: Coal: Energy (USD),Utility Bills: Detailed: Coal: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Total (USD),Utility Bills: Feed-In Tariff: Total (USD),Utility Bills: Feed-In Tariff: Electricity: Fixed (USD),Utility Bills: Feed-In Tariff: Electricity: Energy (USD),Utility Bills: Feed-In Tariff: Electricity: PV Credit (USD),Utility Bills: Feed-In Tariff: Electricity: Total (USD),Utility Bills: Feed-In Tariff: Natural Gas: Fixed (USD),Utility Bills: Feed-In Tariff: Natural Gas: Energy (USD),Utility Bills: Feed-In Tariff: Natural Gas: Total (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Fixed (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Energy (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Total (USD),Utility Bills: Feed-In Tariff: Propane: Fixed (USD),Utility Bills: Feed-In Tariff: Propane: Energy (USD),Utility Bills: Feed-In Tariff: Propane: Total (USD),Utility Bills: Feed-In Tariff: Wood Cord: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Cord: Energy (USD),Utility Bills: Feed-In Tariff: Wood Cord: Total (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Energy (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Total (USD),Utility Bills: Feed-In Tariff: Coal: Fixed (USD),Utility Bills: Feed-In Tariff: Coal: Energy (USD),Utility Bills: Feed-In Tariff: Coal: Total (USD)
base-lighting-ceiling-fans-label-energy-use.xml,1857.74,144.0,1323.9,0.0,1467.9,144.0,245.84,389.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
base-lighting-ceiling-fans.xml,1850.51,144.0,1316.66,0.0,1460.66,144.0,245.85,389.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
base-lighting-holiday.xml,1843.31,144.0,1309.26,0.0,1453.26,144.0,246.05,390.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv
new file mode 100644
index 0000000000..a0055d5ada
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv
@@ -0,0 +1,143 @@
+HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu)
+base-lighting-ceiling-fans-label-energy-use.xml,59.28,59.28,36.073,36.073,23.207,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.088,0.764,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.682,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-ceiling-fans.xml,59.084,59.084,35.876,35.876,23.208,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.056,0.756,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-holiday.xml,58.902,58.902,35.674,35.674,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.531,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-kwh-per-year.xml,60.403,60.403,39.067,39.067,21.336,0.0,0.0,0.0,0.0,0.0,0.0,0.352,0.0,0.0,4.382,0.835,9.013,0.0,0.0,7.673,0.0,0.512,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-mixed.xml,58.882,58.882,35.655,35.655,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.512,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-none-ceiling-fans.xml,56.678,56.678,30.7,30.7,25.978,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.753,0.683,9.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-lighting-none.xml,56.298,56.298,30.3,30.3,25.998,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.856,0.708,9.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-AMY-2012.xml,67.444,67.444,34.486,34.486,32.959,0.0,0.0,0.0,0.0,0.0,0.0,0.536,0.0,0.0,2.874,0.47,9.421,0.0,0.0,4.521,0.0,0.335,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-baltimore-md.xml,39.527,39.527,29.537,29.537,9.99,0.0,0.0,0.0,0.0,0.0,0.0,0.041,0.0,0.0,4.939,0.991,8.518,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.131,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-capetown-zaf.xml,27.572,27.572,27.358,27.358,0.215,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.829,0.897,7.513,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.201,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-dallas-tx.xml,34.458,34.458,32.43,32.43,2.027,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,8.767,1.83,6.705,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.204,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-detailed.xml,58.672,58.672,35.52,35.52,23.152,0.0,0.0,0.0,0.0,0.0,0.0,0.425,0.0,0.0,4.161,0.782,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-duluth-mn.xml,70.42,70.42,28.716,28.716,41.704,0.0,0.0,0.0,0.0,0.0,0.0,0.444,0.0,0.0,2.257,0.321,11.436,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.342,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-helena-mt.xml,78.338,78.338,35.067,35.067,43.271,0.0,0.0,0.0,0.0,0.0,0.0,1.06,0.0,0.0,2.377,0.364,10.161,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.038,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-honolulu-hi.xml,35.417,35.417,35.417,35.417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.633,2.839,4.744,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.285,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-miami-fl.xml,34.659,34.659,34.659,34.659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.936,2.655,4.874,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.279,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-phoenix-az.xml,38.427,38.427,38.423,38.423,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.24,2.904,5.099,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.263,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-location-portland-or.xml,37.8,37.8,27.188,27.188,10.611,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,2.711,0.495,8.935,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.087,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-balanced.xml,79.193,79.193,37.332,37.332,41.861,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,3.982,0.728,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.054,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-bath-kitchen-fans.xml,60.556,60.556,35.575,35.575,24.982,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,4.128,0.773,9.015,0.0,0.0,4.507,0.0,0.334,0.112,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-airflow-fraction-zero.xml,73.203,73.203,37.237,37.237,35.966,0.0,0.0,0.0,0.0,0.0,0.0,0.593,0.0,0.0,4.054,0.748,9.017,0.0,0.0,4.507,0.0,0.334,1.699,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-dse.xml,74.214,74.214,38.308,38.308,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.841,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-evap-cooler-only-ducted.xml,33.603,33.603,33.603,33.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.871,9.083,0.0,0.0,4.507,0.0,0.334,2.757,0.0,0.0,0.0,1.826,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-supplemental-fan-exhaust.xml,71.055,71.055,35.881,35.881,35.174,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,0.0,3.959,0.726,9.019,0.0,0.0,4.507,0.0,0.334,0.476,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-supplemental-fan-supply.xml,72.565,72.565,35.913,35.913,36.652,0.0,0.0,0.0,0.0,0.0,0.0,0.605,0.0,0.0,3.973,0.728,9.018,0.0,0.0,4.507,0.0,0.334,0.466,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis.xml,74.218,74.218,37.185,37.185,37.033,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.017,0.738,9.018,0.0,0.0,4.507,0.0,0.334,1.678,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-erv-atre-asre.xml,64.728,64.728,37.339,37.339,27.388,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.166,0.78,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-erv.xml,64.731,64.731,37.339,37.339,27.392,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.166,0.78,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-exhaust-rated-flow-rate.xml,74.941,74.941,36.354,36.354,38.588,0.0,0.0,0.0,0.0,0.0,0.0,0.637,0.0,0.0,3.957,0.723,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-exhaust.xml,74.941,74.941,36.354,36.354,38.588,0.0,0.0,0.0,0.0,0.0,0.0,0.637,0.0,0.0,3.957,0.723,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-hrv-asre.xml,64.729,64.729,37.342,37.342,27.387,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.168,0.781,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-hrv.xml,64.732,64.732,37.342,37.342,27.39,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.168,0.781,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-multiple.xml,81.866,81.866,37.634,37.634,44.232,0.0,0.0,0.0,0.0,0.0,0.0,0.727,0.0,0.0,4.186,0.599,9.022,0.0,0.0,4.507,0.0,0.334,1.576,0.0,0.0,0.416,2.043,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-supply.xml,72.687,72.687,36.39,36.39,36.297,0.0,0.0,0.0,0.0,0.0,0.0,0.599,0.0,0.0,4.015,0.738,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-mechvent-whole-house-fan.xml,57.25,57.25,33.845,33.845,23.405,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,2.316,0.343,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.67,2.042,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-additional-properties.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-bills-pv-detailed-only.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-bills-pv-mixed.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-bills-pv.xml,58.705,1.441,35.477,-21.786,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-bills.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-defaults.xml,66.057,46.705,31.628,12.276,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,2.452,0.372,2.078,0.0,0.313,4.507,0.0,0.334,1.133,0.0,0.0,1.135,2.16,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.505,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-emissions.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-generators-battery-scheduled.xml,77.439,69.25,37.212,29.023,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-misc-generators-battery.xml,75.705,67.516,35.477,27.288,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-misc-generators.xml,75.705,67.516,35.477,27.288,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-misc-ground-conductivity.xml,56.4,56.4,35.398,35.398,21.002,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,4.126,0.773,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-loads-large-uncommon.xml,146.149,146.149,68.127,68.127,70.022,0.0,2.5,5.5,0.0,0.0,0.0,0.285,0.0,0.0,5.203,1.035,9.01,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.255,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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
+base-misc-loads-large-uncommon2.xml,92.633,92.633,64.578,64.578,20.055,2.5,0.0,0.0,5.5,0.0,0.0,0.285,0.0,0.0,5.203,1.035,9.01,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-loads-none.xml,52.808,52.808,24.144,24.144,28.664,0.0,0.0,0.0,0.0,0.0,0.0,0.473,0.0,0.0,3.423,0.605,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.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,28.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-neighbor-shading-bldgtype-multifamily.xml,26.504,26.504,25.37,25.37,1.134,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.412,0.392,9.536,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-neighbor-shading.xml,63.755,63.755,35.238,35.238,28.517,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.899,0.72,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-shielding-of-home.xml,58.371,58.371,35.616,35.616,22.755,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.277,0.81,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-unit-multiplier.xml,587.055,587.055,354.775,354.775,232.281,0.0,0.0,0.0,0.0,0.0,0.0,3.832,0.0,0.0,41.61,7.814,90.14,0.0,0.0,45.072,0.0,3.339,0.0,0.0,0.0,0.0,20.723,0.0,0.0,3.187,3.653,15.127,15.286,0.0,21.155,83.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-misc-usage-multiplier.xml,126.617,126.617,50.328,50.328,69.089,0.0,2.25,4.95,0.0,0.0,0.0,0.356,0.0,0.0,4.426,0.846,8.168,0.0,0.0,4.056,0.0,0.301,0.0,0.0,0.0,0.0,1.869,2.151,0.0,0.287,0.329,1.361,1.376,0.0,1.904,7.545,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.599,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.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,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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
+base-pv-battery-ah.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-pv-battery-garage.xml,60.567,33.681,34.899,8.013,25.668,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.03,0.522,9.115,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.712,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.89,25.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-pv-battery-round-trip-efficiency.xml,60.94,34.054,37.713,10.826,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,2.235,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-pv-battery-scheduled.xml,60.439,33.553,37.212,10.326,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-pv-battery.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-pv-generators-battery-scheduled.xml,77.439,42.364,37.212,2.136,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-pv-generators-battery.xml,76.58,41.504,36.352,1.277,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.875,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-pv-generators.xml,75.705,40.629,35.477,0.402,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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
+base-pv.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-0-runperiod-1-month.xml,8.6301,8.6301,0.4314,0.4314,8.1986,0.0,0.0,0.0,0.0,0.0,0.0,0.1352,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,8.1986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-0.xml,40.565,40.565,7.038,7.038,33.527,0.0,0.0,0.0,0.0,0.0,0.0,0.553,0.0,0.0,3.275,0.578,0.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,33.527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-1-misc-loads-large-uncommon.xml,101.26,101.26,51.518,51.518,41.832,0.0,2.61,5.301,0.0,0.0,0.0,0.356,0.0,0.0,4.411,0.843,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.609,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,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.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-1-misc-loads-large-uncommon2.xml,80.206,80.206,49.092,49.092,23.204,2.61,0.0,0.0,5.301,0.0,0.0,0.356,0.0,0.0,4.411,0.843,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-1.xml,52.914,52.914,28.074,28.074,24.839,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.907,0.721,3.886,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-5.xml,72.535,52.283,39.993,19.742,32.542,0.0,0.0,0.0,0.0,0.0,0.0,0.537,0.0,0.0,2.553,0.395,6.889,0.0,0.326,4.507,0.0,0.334,1.139,0.0,0.0,1.158,2.162,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.393,32.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-all-10-mins.xml,58.776,58.776,35.688,35.688,23.088,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.327,0.815,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-mixed-timesteps-power-outage.xml,33.02,33.02,28.143,28.143,4.877,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.043,0.51,7.327,0.0,0.0,3.619,0.0,0.267,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.714,6.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-mixed-timesteps.xml,41.838,41.838,33.786,33.786,8.053,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.055,0.513,9.053,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,1.964,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.187,58.187,35.58,35.58,22.607,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.25,0.802,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.092,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.079,44.079,29.802,29.802,14.277,0.0,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,4.22,0.795,7.294,0.0,0.0,3.627,0.0,0.267,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.716,6.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-occupancy-stochastic-vacancy.xml,56.833,56.833,30.396,30.396,26.437,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,4.238,0.8,7.369,0.0,0.0,3.622,0.0,0.266,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.714,6.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-occupancy-stochastic.xml,58.146,58.146,35.565,35.565,22.58,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.239,0.8,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-setpoints-daily-schedules.xml,57.514,57.514,34.887,34.887,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.682,0.685,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-setpoints-daily-setbacks.xml,56.954,56.954,35.032,35.032,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,3.814,0.711,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-setpoints.xml,41.704,41.704,33.546,33.546,8.158,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,2.866,0.474,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-simple-power-outage.xml,68.407,68.407,45.909,45.909,22.498,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,3.319,0.592,20.687,1.37,0.0,4.199,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.292,0.335,1.386,1.401,0.0,1.94,7.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-simple-vacancy.xml,69.072,69.072,42.79,42.79,26.282,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.264,0.806,18.16,1.241,0.0,3.592,0.0,0.266,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.265,0.303,1.256,1.269,0.0,1.756,6.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-schedules-simple.xml,72.9,72.9,50.419,50.419,22.48,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.264,0.806,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-calendar-year-custom.xml,58.665,58.665,35.435,35.435,23.23,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.127,0.773,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-daylight-saving-custom.xml,58.706,58.706,35.477,35.477,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-daylight-saving-disabled.xml,58.677,58.677,35.461,35.461,23.216,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.147,0.779,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-runperiod-1-month.xml,11.2996,11.2996,2.9078,2.9078,8.3917,0.0,0.0,0.0,0.0,0.0,0.0,0.1364,0.0,0.0,0.1114,0.0,0.9104,0.0,0.0,0.3947,0.0,0.0292,0.0,0.0,0.0,0.0,0.1565,0.0,0.0,0.0262,0.03,0.1243,0.1256,0.0,0.1739,0.6891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.3917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-temperature-capacitance-multiplier.xml,58.61,58.61,35.377,35.377,23.234,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.079,0.763,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,58.786,58.786,35.682,35.682,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.326,0.815,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,58.713,58.713,35.674,35.674,23.039,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.323,0.814,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-timestep-10-mins.xml,59.289,59.289,35.585,35.585,23.704,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.244,0.796,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-timestep-30-mins.xml,59.075,59.075,35.54,35.54,23.535,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.209,0.789,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house001.xml,87.969,87.969,47.598,47.598,40.371,0.0,0.0,0.0,0.0,0.0,0.0,0.262,0.0,0.0,16.31,4.49,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.399,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.344,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house002.xml,69.166,69.166,41.261,41.261,27.905,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,15.155,3.484,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.287,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.431,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house003.xml,69.787,69.787,40.827,40.827,28.961,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,13.432,3.676,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.73,0.0,13.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house004.xml,138.513,138.513,76.769,76.769,61.743,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,30.434,9.624,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.245,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.608,0.0,16.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house005.xml,96.981,96.981,54.586,54.586,42.394,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,19.408,5.386,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.341,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.205,0.0,15.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house006.xml,139.332,139.332,31.741,31.741,107.591,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,3.067,0.353,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.748,0.0,20.131,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house007.xml,140.218,140.218,33.874,33.874,106.344,0.0,0.0,0.0,0.0,0.0,0.0,1.665,0.0,0.0,2.683,0.423,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.17,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.681,0.0,23.276,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house008.xml,184.049,184.049,39.185,39.185,144.864,0.0,0.0,0.0,0.0,0.0,0.0,2.503,0.0,0.0,3.799,0.567,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.229,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.434,0.0,26.368,3.452,3.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house009.xml,155.246,155.246,34.01,34.01,121.235,0.0,0.0,0.0,0.0,0.0,0.0,2.056,0.0,0.0,2.592,0.323,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.166,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.565,0.0,23.283,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house010.xml,154.665,154.665,37.525,37.525,117.14,0.0,0.0,0.0,0.0,0.0,0.0,1.88,0.0,0.0,3.077,0.293,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.229,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.708,0.0,26.369,3.452,3.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house011.xml,45.736,45.736,45.736,45.736,0.0,0.0,0.0,0.0,0.0,0.0,7.475,0.735,0.149,0.008,8.521,2.316,10.444,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.321,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house012.xml,36.087,36.087,36.087,36.087,0.0,0.0,0.0,0.0,0.0,0.0,4.983,0.265,0.0,0.0,5.972,1.512,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house013.xml,30.906,30.906,30.906,30.906,0.0,0.0,0.0,0.0,0.0,0.0,3.07,0.171,0.0,0.0,3.983,1.301,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house014.xml,31.992,31.992,31.992,31.992,0.0,0.0,0.0,0.0,0.0,0.0,3.598,0.206,0.008,0.0,4.42,1.445,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house015.xml,30.906,30.906,30.906,30.906,0.0,0.0,0.0,0.0,0.0,0.0,3.07,0.171,0.0,0.0,3.983,1.301,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,0.0,0.0,0.0,0.0,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.564,0.0,15.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house017.xml,92.618,92.618,27.618,27.618,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.403,0.569,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house019.xml,130.924,130.924,51.412,51.412,79.513,0.0,0.0,0.0,0.0,0.0,0.0,1.145,0.0,0.0,11.118,3.598,9.72,0.0,0.0,8.918,0.0,0.741,0.054,0.0,0.0,0.0,1.776,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.859,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.737,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house020.xml,118.228,118.228,55.915,55.915,0.0,0.0,62.313,0.0,0.0,0.0,0.0,0.859,0.0,0.0,12.832,2.69,0.0,0.0,0.0,12.743,0.0,0.893,0.026,0.0,0.0,0.0,3.6,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.257,16.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,0.0,0.0,0.0,0.0,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.171,0.0,18.911,0.0,3.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house021.xml,158.539,158.539,48.132,48.132,110.407,0.0,0.0,0.0,0.0,0.0,0.0,2.05,0.0,0.0,8.113,1.43,0.0,0.0,0.0,10.634,0.244,0.772,0.071,0.0,0.0,0.0,2.427,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.257,13.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.369,0.0,19.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house022.xml,138.743,138.743,48.318,48.318,0.0,90.425,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,8.573,0.779,12.465,0.0,0.0,6.686,0.0,0.61,0.034,0.0,0.0,0.0,1.898,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.257,5.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,90.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house023.xml,139.646,139.646,62.815,62.815,0.0,76.832,0.0,0.0,0.0,0.0,0.0,1.935,0.0,0.0,5.826,0.698,19.988,0.0,0.0,9.214,0.0,0.692,0.045,0.0,0.0,0.0,4.03,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,11.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house024.xml,130.453,130.453,43.582,43.582,0.0,86.87,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,5.228,0.491,16.743,0.0,0.0,3.914,0.0,0.396,0.058,0.0,0.0,0.0,1.837,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,3.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house025.xml,105.591,105.591,69.786,69.786,35.805,0.0,0.0,0.0,0.0,0.0,6.738,1.082,0.0,0.0,18.729,3.053,12.209,0.0,0.0,9.258,0.0,0.783,0.0,0.0,0.0,0.0,3.902,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,8.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house026.xml,57.774,57.774,24.962,24.962,32.812,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.53,0.252,0.548,0.299,0.0,0.0,0.0,2.084,0.0,0.0,0.447,0.338,2.514,1.529,0.934,2.116,7.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.696,0.0,14.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house027.xml,74.114,74.114,31.33,31.33,42.784,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,7.646,0.885,0.0,0.0,0.0,5.944,0.218,0.485,0.927,0.0,0.0,0.0,1.634,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,7.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.79,0.0,17.924,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house028.xml,68.6,68.6,29.885,29.885,38.715,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,7.471,1.389,0.0,0.0,0.0,6.134,0.226,0.503,0.618,0.0,0.0,0.0,2.011,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,7.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.214,0.0,18.113,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house029.xml,78.82,78.82,30.458,30.458,48.362,0.0,0.0,0.0,0.0,0.0,0.0,0.741,0.0,0.0,6.681,0.867,0.0,0.0,0.0,6.539,0.275,0.569,0.76,0.0,0.0,0.0,1.847,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,6.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.706,0.0,12.586,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house030.xml,59.569,59.569,17.186,17.186,0.0,0.0,42.384,0.0,0.0,0.0,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.321,0.272,0.497,0.57,0.0,0.0,0.0,1.822,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.88,5.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.058,0.0,13.288,2.238,2.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
+house031.xml,235.538,235.538,50.259,50.259,185.279,0.0,0.0,0.0,0.0,0.0,0.0,3.633,0.0,0.0,12.842,3.2,0.0,0.0,0.0,10.355,0.246,0.759,0.0,0.0,0.0,0.0,1.486,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.053,12.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.8,0.0,29.081,4.254,4.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house032.xml,102.299,102.299,15.55,15.55,86.749,0.0,0.0,0.0,0.0,0.0,0.0,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.091,0.0,0.518,0.0,0.0,0.0,0.0,1.583,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.859,4.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.52,0.0,16.252,2.201,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house033.xml,107.731,107.731,14.756,14.756,0.0,92.975,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,4.885,0.0,0.529,0.0,0.0,0.0,0.0,1.353,0.0,0.0,0.0,0.194,1.443,1.159,0.0,1.461,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.294,0.0,7.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house034.xml,155.512,155.512,43.167,43.167,0.0,0.0,112.345,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.489,0.341,1.205,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,15.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,0.0,0.0,0.0,0.0,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.983,0.0,21.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house035.xml,64.191,64.191,17.262,17.262,46.929,0.0,0.0,0.0,0.0,0.0,0.0,0.832,0.0,0.0,1.681,0.107,0.0,0.0,0.0,5.435,0.0,0.534,0.0,0.0,0.0,0.0,2.043,0.0,0.0,0.223,0.194,0.114,0.079,0.0,1.461,4.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.453,0.0,9.639,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house036.xml,83.077,83.077,25.512,25.512,57.565,0.0,0.0,0.0,0.0,0.0,0.0,0.997,0.0,0.0,5.633,0.939,0.0,0.0,0.0,5.446,0.0,0.536,0.0,0.0,0.0,0.0,1.459,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.088,0.0,17.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house037.xml,89.347,89.347,21.69,21.69,0.0,67.658,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,6.804,0.0,0.61,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.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,51.513,0.0,16.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house038.xml,126.267,126.267,50.705,50.705,75.562,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,13.518,2.476,0.0,0.0,0.0,6.904,0.315,0.625,0.0,0.0,0.0,0.0,1.429,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,6.092,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,51.541,0.0,24.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house039.xml,101.512,101.512,23.992,23.992,77.52,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,5.181,0.0,0.0,4.408,0.239,0.418,0.0,0.0,0.0,0.0,1.674,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.655,4.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.832,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house041.xml,261.841,261.841,47.066,47.066,214.775,0.0,0.0,0.0,0.0,0.0,0.0,4.228,0.0,0.0,2.676,0.259,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.176,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188.222,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house042.xml,233.994,233.994,39.923,39.923,194.071,0.0,0.0,0.0,0.0,0.0,0.0,3.975,0.0,0.0,1.808,0.068,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.633,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house043.xml,160.331,160.331,29.808,29.808,130.524,0.0,0.0,0.0,0.0,0.0,0.0,2.511,0.0,0.0,1.968,0.107,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.624,0.0,19.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house044.xml,228.725,228.725,43.393,43.393,185.333,0.0,0.0,0.0,0.0,0.0,0.0,4.767,0.0,0.0,2.15,0.191,0.0,0.0,0.0,12.947,0.315,0.974,0.037,0.0,0.0,0.0,2.098,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,12.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.764,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house045.xml,153.298,153.298,35.107,35.107,118.191,0.0,0.0,0.0,0.0,0.0,0.0,2.804,0.0,0.0,2.456,0.299,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.142,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.737,0.0,22.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house046.xml,25.31,25.31,25.31,25.31,0.0,0.0,0.0,0.0,0.0,0.0,5.464,0.463,0.34,0.011,3.901,1.08,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.668,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house047.xml,21.556,21.556,14.891,14.891,6.665,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,1.114,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.336,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house048.xml,92.709,92.709,40.023,40.023,52.686,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,13.177,3.872,0.0,0.0,0.0,3.689,0.085,0.499,2.987,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.762,0.0,12.584,0.0,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house049.xml,36.103,36.103,32.605,32.605,3.498,0.0,0.0,0.0,0.0,0.0,7.744,0.047,0.0,0.0,8.044,0.206,2.639,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.962,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house050.xml,52.412,52.412,22.03,22.03,30.381,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,2.184,0.392,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.184,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.467,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv
new file mode 100644
index 0000000000..743e19f53b
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv
@@ -0,0 +1,143 @@
+HPXML,HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)
+base-lighting-ceiling-fans-label-energy-use.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-ceiling-fans.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-holiday.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-kwh-per-year.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-mixed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-none-ceiling-fans.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-lighting-none.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-location-AMY-2012.xml,10.22,91.4,36000.0,24000.0,0.0,31211.0,8359.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4406.0,19561.0,5889.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,617.0,3320.0,0.0,0.0,0.0,0.0
+base-location-baltimore-md.xml,17.24,91.22,24000.0,24000.0,0.0,19667.0,5821.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2260.0,16134.0,2044.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2446.0,364.0,3320.0,1882.0,594.0,488.0,800.0
+base-location-capetown-zaf.xml,41.0,84.38,24000.0,24000.0,0.0,13422.0,5576.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1102.0,14478.0,2237.0,5856.0,0.0,185.0,149.0,0.0,333.0,0.0,2212.0,186.0,3320.0,847.0,27.0,20.0,800.0
+base-location-dallas-tx.xml,25.88,98.42,24000.0,24000.0,0.0,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
+base-location-detailed.xml,6.8,91.76,36000.0,24000.0,0.0,32509.0,8476.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4532.0,19701.0,5958.0,7050.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,608.0,3320.0,107.0,0.0,-693.0,800.0
+base-location-duluth-mn.xml,-13.72,81.14,36000.0,24000.0,0.0,31470.0,6398.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3881.0,12047.0,63.0,5891.0,0.0,156.0,64.0,0.0,344.0,0.0,2100.0,108.0,3320.0,1212.0,246.0,166.0,800.0
+base-location-helena-mt.xml,-8.14,89.24,48000.0,24000.0,0.0,40682.0,10041.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2977.0,2684.0,6529.0,19300.0,6028.0,6852.0,0.0,184.0,165.0,0.0,0.0,0.0,2207.0,545.0,3320.0,249.0,0.0,-551.0,800.0
+base-location-honolulu-hi.xml,63.32,89.06,12000.0,24000.0,0.0,3421.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,220.0,13294.0,32.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,306.0,3320.0,1838.0,580.0,459.0,800.0
+base-location-miami-fl.xml,51.62,90.68,12000.0,24000.0,0.0,8619.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,657.0,13407.0,-219.0,6605.0,0.0,279.0,507.0,0.0,0.0,0.0,2565.0,350.0,3320.0,2531.0,954.0,776.0,800.0
+base-location-phoenix-az.xml,41.36,108.14,24000.0,24000.0,0.0,13290.0,1051.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1053.0,18179.0,710.0,8845.0,0.0,401.0,975.0,0.0,0.0,0.0,3028.0,899.0,3320.0,624.0,0.0,-176.0,800.0
+base-location-portland-or.xml,28.58,87.08,24000.0,24000.0,0.0,17793.0,6473.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1688.0,15756.0,2411.0,6585.0,0.0,210.0,243.0,0.0,429.0,0.0,2304.0,254.0,3320.0,959.0,90.0,69.0,800.0
+base-mechvent-balanced.xml,6.8,91.76,36000.0,24000.0,0.0,39253.0,8755.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10996.0,21501.0,6078.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2301.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-bath-kitchen-fans.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-mechvent-cfis-airflow-fraction-zero.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-dse.xml,6.8,91.76,36000.0,24000.0,0.0,28422.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,15082.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-evap-cooler-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,28422.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,17588.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-supplemental-fan-exhaust.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis-supplemental-fan-supply.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-cfis.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-erv-atre-asre.xml,6.8,91.76,36000.0,24000.0,0.0,34169.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6021.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,981.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-erv.xml,6.8,91.76,36000.0,24000.0,0.0,34170.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6022.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,982.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-exhaust-rated-flow-rate.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-exhaust.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-hrv-asre.xml,6.8,91.76,36000.0,24000.0,0.0,34169.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6021.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,981.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-hrv.xml,6.8,91.76,36000.0,24000.0,0.0,34170.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6022.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,982.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,43629.0,16325.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7803.0,26282.0,11671.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1489.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-supply.xml,6.8,91.76,36000.0,24000.0,0.0,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
+base-mechvent-whole-house-fan.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-additional-properties.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-bills-pv-detailed-only.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-bills-pv-mixed.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-bills-pv.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-bills.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-defaults.xml,6.8,91.76,36000.0,24000.0,0.0,32710.0,4638.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8571.0,16981.0,1113.0,7942.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1841.0,3320.0,0.0,0.0,0.0,0.0
+base-misc-emissions.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-generators-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-generators-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-generators.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-ground-conductivity.xml,6.8,91.76,36000.0,24000.0,0.0,32064.0,8590.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-loads-large-uncommon.xml,6.8,91.76,36000.0,24000.0,0.0,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-misc-loads-large-uncommon2.xml,6.8,91.76,36000.0,24000.0,0.0,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-misc-loads-none.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-neighbor-shading-bldgtype-multifamily.xml,6.8,91.76,12000.0,12000.0,0.0,6058.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1558.0,7663.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
+base-misc-neighbor-shading.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-misc-shielding-of-home.xml,6.8,91.76,36000.0,24000.0,0.0,31943.0,8587.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,3854.0,19689.0,6046.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,521.0,3320.0,248.0,0.0,-552.0,800.0
+base-misc-unit-multiplier.xml,6.8,91.76,360000.0,240000.0,0.0,328110.0,86110.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,24080.0,21710.0,46990.0,197940.0,60410.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,22930.0,6310.0,33200.0,1320.0,0.0,-6680.0,8000.0
+base-misc-usage-multiplier.xml,6.8,91.76,36000.0,24000.0,0.0,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-pv-battery-ah.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-battery-garage.xml,6.8,91.76,36000.0,24000.0,0.0,28888.0,6755.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12674.0,523.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-battery-round-trip-efficiency.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-generators-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-generators-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv-generators.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-pv.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-residents-0-runperiod-1-month.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-residents-0.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-residents-1-misc-loads-large-uncommon.xml,6.8,91.76,36000.0,24000.0,0.0,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-residents-1-misc-loads-large-uncommon2.xml,6.8,91.76,36000.0,24000.0,0.0,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
+base-residents-1.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-residents-5.xml,6.8,91.76,36000.0,24000.0,0.0,32651.0,4638.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8512.0,16980.0,1113.0,7942.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1840.0,3320.0,0.0,0.0,0.0,0.0
+base-schedules-detailed-all-10-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-mixed-timesteps-power-outage.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-mixed-timesteps.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-occupancy-stochastic-10-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-occupancy-stochastic-power-outage.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-occupancy-stochastic-vacancy.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-occupancy-stochastic.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-setpoints-daily-schedules.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-setpoints-daily-setbacks.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-simple-power-outage.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-simple-vacancy.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-schedules-simple.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-calendar-year-custom.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-daylight-saving-custom.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-daylight-saving-disabled.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-runperiod-1-month.xml,10.22,91.4,36000.0,24000.0,0.0,31211.0,8359.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4406.0,19561.0,5889.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,617.0,3320.0,0.0,0.0,0.0,0.0
+base-simcontrol-temperature-capacitance-multiplier.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-timestep-10-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base-simcontrol-timestep-30-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+base.xml,6.8,91.76,36000.0,24000.0,0.0,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
+house001.xml,25.88,98.42,90000.0,60000.0,0.0,62194.0,24410.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,9392.0,62989.0,35235.0,10595.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3551.0,3780.0,7159.0,3503.0,2455.0,1200.0
+house002.xml,25.88,98.42,90000.0,60000.0,0.0,48142.0,15321.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,5600.0,34153.0,14225.0,7463.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,2150.0,3320.0,4039.0,1752.0,1487.0,800.0
+house003.xml,25.88,98.42,90000.0,60000.0,0.0,48717.0,15957.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,6185.0,42807.0,18335.0,10270.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2344.0,3320.0,4173.0,1752.0,1621.0,800.0
+house004.xml,25.88,98.42,80000.0,60000.0,0.0,77153.0,20989.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,10389.0,53882.0,18511.0,13772.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3840.0,3550.0,4941.0,1285.0,2656.0,1000.0
+house005.xml,25.88,98.42,90000.0,60000.0,0.0,71725.0,26974.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,10348.0,66712.0,31452.0,15480.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3844.0,3550.0,7162.0,3503.0,2659.0,1000.0
+house006.xml,-13.72,81.14,80000.0,30000.0,0.0,50885.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5348.0,10160.0,0.0,4797.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,172.0,3320.0,1569.0,0.0,769.0,800.0
+house007.xml,-13.72,81.14,90000.0,42000.0,0.0,45997.0,5482.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,10477.0,12950.0,1094.0,6017.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,534.0,3550.0,2221.0,404.0,817.0,1000.0
+house008.xml,-13.72,81.14,90000.0,36000.0,0.0,68680.0,8922.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9808.0,17721.0,274.0,10293.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,320.0,3780.0,2487.0,158.0,1129.0,1200.0
+house009.xml,-13.72,81.14,90000.0,36000.0,0.0,46535.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,12367.0,13658.0,0.0,7141.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,580.0,3550.0,1888.0,0.0,888.0,1000.0
+house010.xml,-13.72,81.14,90000.0,30000.0,0.0,51051.0,7319.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10730.0,13653.0,647.0,6171.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,344.0,3780.0,2627.0,261.0,1166.0,1200.0
+house011.xml,24.62,91.58,24000.0,18000.0,34120.0,21304.0,6705.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,5560.0,22173.0,8205.0,4146.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1418.0,3550.0,3303.0,463.0,1840.0,1000.0
+house012.xml,24.62,91.58,23400.0,23200.0,0.0,14431.0,1329.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4673.0,12574.0,648.0,3114.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1174.0,3320.0,2693.0,370.0,1523.0,800.0
+house013.xml,24.62,91.58,18000.0,18000.0,17060.0,13403.0,3789.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2763.0,10763.0,1649.0,2387.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,594.0,3090.0,1683.0,312.0,771.0,600.0
+house014.xml,24.62,91.58,18000.0,18000.0,17060.0,14656.0,3937.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,3021.0,12225.0,1718.0,3504.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,646.0,3090.0,1750.0,312.0,838.0,600.0
+house015.xml,24.62,91.58,18000.0,18000.0,17060.0,13403.0,3789.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2763.0,10763.0,1649.0,2387.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,594.0,3090.0,1683.0,312.0,771.0,600.0
+house016.xml,19.22,86.72,136000.0,36000.0,36000.0,27345.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5408.0,18643.0,0.0,9139.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,604.0,3320.0,2014.0,0.0,1214.0,800.0
+house017.xml,16.16,89.24,60000.0,24000.0,0.0,37025.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11923.0,17009.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1608.0,3550.0,3597.0,0.0,2597.0,1000.0
+house018.xml,19.22,86.72,36000.0,36000.0,36000.0,21010.0,7554.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3224.0,12952.0,2713.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,360.0,4520.0,2884.0,1360.0,724.0,800.0
+house019.xml,16.16,89.24,100000.0,60000.0,0.0,50676.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,2051.0,5769.0,5578.0,32671.0,0.0,12638.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,752.0,4520.0,2015.0,0.0,1215.0,800.0
+house020.xml,19.22,86.72,120000.0,60000.0,0.0,46286.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3834.0,6812.0,10617.0,25353.0,0.0,10675.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1186.0,4520.0,3184.0,0.0,2384.0,800.0
+house021.xml,16.16,89.24,130000.0,60000.0,0.0,53402.0,8082.0,10175.0,0.0,318.0,15825.0,0.0,323.0,2208.0,3431.0,13039.0,28608.0,5951.0,9824.0,0.0,149.0,3704.0,0.0,-30.0,0.0,2501.0,1758.0,4750.0,4968.0,1128.0,2840.0,1000.0
+house022.xml,16.16,89.24,100000.0,36000.0,0.0,54239.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21908.0,25373.0,0.0,8964.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2954.0,4520.0,5571.0,0.0,4771.0,800.0
+house023.xml,16.16,89.24,125000.0,42000.0,0.0,46165.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1816.0,4899.0,15515.0,22671.0,0.0,8657.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2079.0,4750.0,4357.0,0.0,3357.0,1000.0
+house024.xml,16.16,89.24,85000.0,30000.0,0.0,62811.0,14524.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,17134.0,21785.0,1244.0,4065.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2311.0,3320.0,6672.0,2141.0,3731.0,800.0
+house025.xml,24.62,91.58,158000.0,81000.0,33000.0,58440.0,23853.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,11062.0,35444.0,11934.0,7696.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2251.0,4520.0,9692.0,5972.0,2921.0,800.0
+house026.xml,24.62,91.58,84000.0,0.0,0.0,22464.0,0.0,3869.0,0.0,128.0,5462.0,0.0,5703.0,0.0,1459.0,5842.0,17199.0,0.0,6416.0,0.0,78.0,1775.0,0.0,1973.0,0.0,2302.0,1335.0,3320.0,2532.0,0.0,1732.0,800.0
+house027.xml,24.62,91.58,75000.0,36000.0,0.0,38432.0,7666.0,4494.0,0.0,375.0,6506.0,550.0,183.0,8238.0,1516.0,8905.0,19961.0,3763.0,4538.0,0.0,228.0,2884.0,270.0,2.0,0.0,2392.0,2565.0,3320.0,5887.0,1759.0,3328.0,800.0
+house028.xml,24.62,91.58,75000.0,36000.0,0.0,31811.0,8688.0,4365.0,0.0,272.0,5108.0,616.0,129.0,3569.0,1488.0,7577.0,20604.0,4014.0,6589.0,0.0,109.0,1852.0,374.0,2.0,0.0,2348.0,1768.0,3550.0,5319.0,2025.0,2293.0,1000.0
+house029.xml,17.24,91.22,77000.0,36000.0,0.0,31002.0,3401.0,4924.0,0.0,120.0,7666.0,0.0,2973.0,0.0,2105.0,9813.0,15962.0,-515.0,5761.0,0.0,-11.0,1788.0,0.0,914.0,0.0,2842.0,1863.0,3320.0,4195.0,903.0,2492.0,800.0
+house030.xml,17.24,91.22,87000.0,0.0,0.0,20792.0,0.0,3366.0,0.0,449.0,7834.0,0.0,0.0,3900.0,1036.0,4206.0,10193.0,0.0,2912.0,0.0,183.0,1663.0,0.0,0.0,0.0,1399.0,946.0,3090.0,1866.0,0.0,1266.0,600.0
+house031.xml,16.16,89.24,200000.0,96000.0,0.0,83943.0,13714.0,10261.0,0.0,650.0,23580.0,0.0,643.0,1726.0,7333.0,26036.0,43647.0,9676.0,13165.0,0.0,305.0,7760.0,0.0,-124.0,0.0,5345.0,3511.0,4010.0,8716.0,1646.0,5670.0,1400.0
+house032.xml,16.16,89.24,75000.0,0.0,0.0,36492.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1507.0,5647.0,6957.0,17290.0,0.0,6289.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,936.0,3550.0,2512.0,0.0,1512.0,1000.0
+house033.xml,16.16,89.24,109000.0,0.0,0.0,32513.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7831.0,19037.0,0.0,4578.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1054.0,3550.0,2702.0,0.0,1702.0,1000.0
+house034.xml,16.16,89.24,210000.0,0.0,0.0,61853.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4062.0,1995.0,4622.0,18592.0,34721.0,0.0,20217.0,0.0,482.0,4382.0,0.0,212.0,0.0,3369.0,2510.0,3550.0,5053.0,0.0,4053.0,1000.0
+house035.xml,16.16,89.24,80000.0,24000.0,0.0,27887.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,10142.0,16125.0,0.0,5641.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1368.0,3320.0,3009.0,0.0,2209.0,800.0
+house036.xml,16.16,89.24,60000.0,24000.0,0.0,25322.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,5035.0,13132.0,0.0,4222.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,678.0,3090.0,1694.0,0.0,1094.0,600.0
+house037.xml,19.22,86.72,110000.0,0.0,0.0,40734.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,11288.0,26030.0,0.0,7077.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1257.0,3320.0,3327.0,0.0,2527.0,800.0
+house038.xml,16.16,89.24,71000.0,36000.0,0.0,31254.0,0.0,6993.0,0.0,362.0,9766.0,0.0,640.0,734.0,1706.0,11053.0,18218.0,0.0,9122.0,0.0,170.0,2306.0,0.0,-123.0,0.0,1243.0,1491.0,4010.0,3807.0,0.0,2407.0,1400.0
+house039.xml,16.16,89.24,87000.0,0.0,0.0,42040.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6185.0,0.0,8806.0,11171.0,23026.0,0.0,9886.0,0.0,683.0,526.0,0.0,690.0,0.0,6418.0,1503.0,3320.0,3228.0,0.0,2428.0,800.0
+house040.xml,16.16,89.24,75000.0,0.0,0.0,45034.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11904.0,24007.0,0.0,8227.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1605.0,3320.0,3392.0,0.0,2592.0,800.0
+house041.xml,-13.72,81.14,75000.0,30000.0,0.0,110868.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,32212.0,27317.0,0.0,17198.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,850.0,3550.0,2301.0,0.0,1301.0,1000.0
+house042.xml,-13.72,81.14,90000.0,24000.0,0.0,97696.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,28314.0,16152.0,0.0,6497.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,745.0,3550.0,2140.0,0.0,1140.0,1000.0
+house043.xml,-13.72,81.14,90000.0,30000.0,0.0,65996.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16671.0,15200.0,0.0,7978.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,439.0,3320.0,1471.0,0.0,671.0,800.0
+house044.xml,-13.72,81.14,110000.0,36000.0,0.0,82003.0,0.0,8422.0,0.0,1211.0,29262.0,1911.0,5137.0,2346.0,3592.0,30123.0,21596.0,0.0,11623.0,0.0,114.0,2778.0,368.0,-23.0,0.0,2623.0,792.0,3320.0,2011.0,0.0,1211.0,800.0
+house045.xml,-13.72,81.14,70000.0,30000.0,0.0,57795.0,0.0,8558.0,455.0,398.0,28557.0,1494.0,31.0,2749.0,1367.0,14186.0,13977.0,0.0,8179.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,462.0,3320.0,1508.0,0.0,708.0,800.0
+house046.xml,24.62,91.58,18000.0,18000.0,17065.0,19233.0,4029.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8772.0,15624.0,3895.0,3759.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1750.0,2860.0,3154.0,483.0,2271.0,400.0
+house047.xml,19.22,86.72,20000.0,18000.0,0.0,7925.0,1056.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,4295.0,4240.0,0.0,522.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,680.0,2860.0,1767.0,0.0,1367.0,400.0
+house048.xml,25.88,98.42,63000.0,46500.0,0.0,51627.0,12345.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,10413.0,30563.0,8429.0,4943.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3856.0,3550.0,4794.0,1127.0,2667.0,1000.0
+house049.xml,33.26,106.16,39000.0,16000.0,0.0,19187.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4521.0,21175.0,0.0,7292.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2932.0,3090.0,0.0,0.0,0.0,0.0
+house050.xml,28.58,87.08,58000.0,29000.0,0.0,21857.0,7749.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3201.0,19063.0,5192.0,7006.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,621.0,3320.0,1245.0,110.0,335.0,800.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv
new file mode 100644
index 0000000000..0454ada137
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv
@@ -0,0 +1,143 @@
+HPXML,Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu)
+base-lighting-ceiling-fans-label-energy-use.xml,21.733,0.0,13.371,9.071,0.613,0.0,0.0,0.0,3.545,3.638,0.512,7.504,0.63,10.088,-12.691,0.0,0.0,0.0,8.274,-0.067,4.937,0.0,0.728,0.0,4.596,-7.8,-2.489,0.0,-0.078,-0.488,-0.055,2.617,-0.032,-1.473,11.723,0.0,0.0,0.0,-6.441,-0.063,-1.157,-3.985,-0.17,0.0,2.672,8.468,2.018
+base-lighting-ceiling-fans.xml,21.734,0.0,13.231,9.071,0.613,0.0,0.0,0.0,3.545,3.638,0.512,7.504,0.63,10.088,-12.691,0.0,0.0,0.0,8.275,-0.067,4.937,0.0,0.728,0.0,4.597,-7.8,-2.489,0.0,-0.075,-0.487,-0.055,2.621,-0.031,-1.468,11.723,0.0,0.0,0.0,-6.434,-0.063,-1.156,-3.969,-0.17,0.0,2.653,8.311,2.018
+base-lighting-holiday.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-lighting-kwh-per-year.xml,19.981,0.0,14.566,9.071,0.614,0.0,0.0,0.0,3.576,3.658,0.515,7.573,0.634,10.145,-12.66,0.0,0.0,0.0,8.378,-0.074,4.934,0.0,0.729,0.0,4.258,-7.788,-4.232,0.0,-0.077,-0.474,-0.053,2.656,-0.028,-1.42,11.736,0.0,0.0,0.0,-6.39,-0.07,-1.144,-3.966,-0.166,0.0,2.902,7.796,3.441
+base-lighting-mixed.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-lighting-none-ceiling-fans.xml,24.329,0.0,11.932,9.071,0.615,0.0,0.0,0.0,3.502,3.61,0.508,7.419,0.624,10.017,-12.724,0.0,0.0,0.0,8.168,-0.06,4.946,0.0,0.726,0.0,5.091,-7.816,0.0,0.0,-0.018,-0.438,-0.048,2.761,-0.019,-1.325,11.712,0.0,0.0,0.0,-6.202,-0.056,-1.118,-3.697,-0.164,0.0,2.447,8.291,0.0
+base-lighting-none.xml,24.348,0.0,12.303,9.071,0.617,0.0,0.0,0.0,3.501,3.609,0.508,7.42,0.624,10.016,-12.724,0.0,0.0,0.0,8.183,-0.06,4.946,0.0,0.726,0.0,5.095,-7.816,0.0,0.0,0.022,-0.392,-0.042,2.888,-0.008,-1.186,11.712,0.0,0.0,0.0,-6.009,-0.055,-1.081,-3.513,-0.156,0.0,2.546,7.762,0.0
+base-location-AMY-2012.xml,30.86,0.0,8.462,9.504,0.62,0.0,0.0,0.0,4.263,4.38,0.622,9.797,0.805,12.563,-13.838,0.0,0.0,0.0,10.941,-0.087,5.417,0.0,0.771,0.0,6.647,-9.003,-2.868,0.0,0.014,-0.322,-0.039,1.646,-0.04,-1.617,9.904,0.0,0.0,0.0,-7.373,-0.078,-0.853,-2.651,-0.095,0.0,1.848,6.613,1.652
+base-location-baltimore-md.xml,9.228,0.0,16.532,8.4,0.66,0.0,0.0,0.0,3.476,3.334,0.0,0.0,0.719,9.022,-8.613,0.0,0.0,3.288,0.0,-0.347,2.119,0.0,0.802,0.0,1.571,-5.055,-1.293,0.0,-0.093,-0.578,0.0,0.0,0.006,0.183,11.945,0.0,0.0,-0.859,0.0,-0.34,-0.399,-2.242,-0.201,0.0,1.534,6.386,1.352
+base-location-capetown-zaf.xml,0.199,0.0,14.827,7.298,0.693,0.0,0.0,0.0,1.563,1.328,0.0,0.0,0.575,4.529,-5.824,0.0,0.0,2.605,0.0,-1.138,0.758,0.0,0.328,0.0,0.031,-3.996,-0.714,0.0,-0.838,-1.556,0.0,0.0,-0.435,-0.296,17.619,0.0,0.0,-4.045,0.0,-1.139,-0.726,-3.446,-0.387,0.0,0.938,7.516,1.932
+base-location-dallas-tx.xml,1.87,0.0,30.47,6.557,0.575,0.0,0.0,0.0,1.719,1.599,0.0,0.0,0.364,4.633,-5.076,0.0,0.0,0.0,1.195,-0.338,1.011,0.0,0.385,0.0,0.051,-3.122,-0.765,0.0,0.562,0.007,0.0,0.0,0.197,2.736,17.095,0.0,0.0,0.0,1.935,-0.333,-0.225,-2.346,-0.089,0.0,0.353,8.967,1.881
+base-location-detailed.xml,21.726,0.0,13.612,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.924,0.0,0.728,0.0,4.585,-7.8,-2.489,0.0,-0.036,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.115,-3.781,-0.162,0.0,2.754,7.782,2.018
+base-location-duluth-mn.xml,38.81,0.0,5.37,11.393,0.837,0.0,0.0,0.0,7.025,7.023,0.0,0.0,1.59,19.63,-13.199,0.0,0.0,10.121,0.0,-0.372,6.605,0.0,0.0,0.0,7.21,-5.309,-1.891,0.0,-0.426,-0.778,0.0,0.0,-0.088,-0.816,8.039,0.0,0.0,-1.541,0.0,-0.372,-0.507,-1.617,0.0,0.0,0.375,2.502,0.755
+base-location-helena-mt.xml,40.869,0.0,6.329,10.294,0.625,0.0,0.0,0.0,5.347,5.452,0.772,11.482,1.046,15.436,-15.408,0.0,0.0,0.0,13.797,-0.201,8.099,0.0,1.202,0.0,7.587,-10.848,-3.32,0.0,0.001,-0.258,-0.028,1.29,0.009,-0.479,8.37,0.0,0.0,0.0,-6.066,-0.195,-0.676,-2.493,-0.122,0.0,1.202,4.71,1.187
+base-location-honolulu-hi.xml,0.0,0.0,47.571,4.496,0.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,1.252,0.768,0.0,0.0,0.306,5.327,20.458,0.0,0.0,0.0,6.063,-0.004,0.02,-2.06,0.063,0.0,0.726,12.146,2.646
+base-location-miami-fl.xml,0.0,0.0,44.163,4.632,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,0.618,0.0,0.0,0.315,4.571,19.646,0.0,0.0,0.0,5.632,-0.004,-0.106,-2.841,-0.0,0.0,0.671,12.141,2.646
+base-location-phoenix-az.xml,0.003,0.0,52.682,4.866,0.557,0.0,0.0,0.0,0.711,0.52,0.0,0.0,0.208,2.307,-2.036,0.0,0.0,0.0,-0.1,-0.498,0.372,0.0,0.131,0.0,-0.0,-1.432,-0.297,0.0,1.798,1.434,0.0,0.0,0.813,7.016,24.03,0.0,0.0,0.0,7.07,-0.51,0.464,-3.212,0.129,0.0,0.945,10.698,2.349
+base-location-portland-or.xml,9.803,0.0,8.285,8.724,0.78,0.0,0.0,0.0,3.414,3.26,0.0,0.0,0.743,8.714,-8.283,0.0,0.0,6.207,0.0,-0.453,1.59,0.0,0.809,0.0,1.816,-6.547,-1.625,0.0,-0.267,-0.726,0.0,0.0,0.007,-0.534,10.218,0.0,0.0,-2.789,0.0,-0.45,-0.363,-2.834,-0.24,0.0,0.539,4.85,1.021
+base-mechvent-balanced.xml,39.207,0.0,12.62,9.071,0.621,0.0,0.0,0.0,3.509,3.716,0.523,7.42,0.655,10.383,-12.834,0.0,0.0,0.0,8.096,-0.129,5.162,0.0,15.091,0.0,7.923,-8.042,-2.554,0.0,0.165,-0.24,-0.02,3.024,0.037,-0.65,11.579,0.0,0.0,0.0,-5.927,-0.124,-0.862,-3.011,-3.481,0.0,2.746,7.526,1.953
+base-mechvent-bath-kitchen-fans.xml,23.394,0.0,13.441,9.071,0.616,0.0,0.0,0.0,3.537,3.637,0.512,7.503,0.629,10.079,-12.698,0.0,0.0,0.0,8.297,-0.061,4.524,0.0,2.474,0.0,4.924,-7.804,-2.49,0.0,-0.022,-0.427,-0.047,2.789,-0.017,-1.291,11.715,0.0,0.0,0.0,-6.173,-0.057,-0.997,-3.683,-0.672,0.0,2.737,7.776,2.017
+base-mechvent-cfis-airflow-fraction-zero.xml,33.686,0.0,12.98,9.071,0.619,0.0,0.0,0.0,3.482,3.658,0.515,7.478,0.637,10.169,-12.751,0.0,0.0,0.0,8.282,-0.077,1.603,0.0,13.89,0.0,6.898,-7.884,-2.508,0.0,0.063,-0.341,-0.034,2.959,0.008,-0.997,11.663,0.0,0.0,0.0,-5.919,-0.073,-0.252,-3.264,-3.171,0.0,2.773,7.689,1.999
+base-mechvent-cfis-dse.xml,26.882,0.0,10.309,9.071,0.619,0.0,0.0,0.0,3.76,3.656,0.514,7.471,0.637,10.163,-12.751,0.0,0.0,0.0,8.27,-0.076,1.561,0.0,13.78,0.0,0.0,-7.884,-2.508,0.0,0.155,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.921,-0.072,-0.254,-3.257,-3.138,0.0,0.0,7.689,1.999
+base-mechvent-cfis-evap-cooler-only-ducted.xml,0.0,0.0,10.874,9.071,0.689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.342,-0.034,3.021,0.001,-1.054,11.85,0.0,0.0,0.0,-6.55,-0.062,-0.281,-3.051,-3.031,0.0,0.495,7.894,2.042
+base-mechvent-cfis-supplemental-fan-exhaust.xml,32.944,0.0,12.591,9.071,0.62,0.0,0.0,0.0,3.512,3.679,0.518,7.459,0.643,10.245,-12.798,0.0,0.0,0.0,8.229,-0.09,2.459,0.0,12.53,0.0,6.759,-7.956,-2.53,0.0,0.114,-0.289,-0.027,3.03,0.022,-0.827,11.615,0.0,0.0,0.0,-5.847,-0.086,-0.264,-3.086,-3.947,0.0,2.697,7.614,1.977
+base-mechvent-cfis-supplemental-fan-supply.xml,34.328,0.0,12.631,9.071,0.619,0.0,0.0,0.0,3.493,3.67,0.516,7.465,0.641,10.217,-12.781,0.0,0.0,0.0,8.25,-0.087,1.635,0.0,14.457,0.0,7.012,-7.926,-2.52,0.0,0.093,-0.31,-0.03,3.0,0.017,-0.891,11.632,0.0,0.0,0.0,-5.876,-0.083,-0.242,-3.145,-3.773,0.0,2.717,7.645,1.987
+base-mechvent-cfis.xml,34.686,0.0,12.8,9.071,0.619,0.0,0.0,0.0,3.492,3.7,0.521,7.453,0.65,10.321,-12.8,0.0,0.0,0.0,8.184,-0.115,1.64,0.0,14.067,0.0,7.804,-7.978,-2.537,0.0,0.154,-0.285,-0.026,2.977,0.024,-0.802,11.613,0.0,0.0,0.0,-5.952,-0.111,-0.245,-3.151,-2.967,0.0,2.148,7.594,1.971
+base-mechvent-erv-atre-asre.xml,25.65,0.0,13.558,9.071,0.616,0.0,0.0,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.905,0.0,5.365,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.834,0.0,2.79,7.766,2.016
+base-mechvent-erv.xml,25.653,0.0,13.558,9.071,0.616,0.0,0.0,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.907,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.835,0.0,2.79,7.766,2.016
+base-mechvent-exhaust-rated-flow-rate.xml,36.141,0.0,12.544,9.071,0.62,0.0,0.0,0.0,3.494,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,2.211,0.0,15.417,0.0,7.345,-7.961,-2.532,0.0,0.117,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.189,-3.076,-4.098,0.0,2.72,7.609,1.975
+base-mechvent-exhaust.xml,36.141,0.0,12.544,9.071,0.62,0.0,0.0,0.0,3.494,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,2.211,0.0,15.417,0.0,7.345,-7.961,-2.532,0.0,0.117,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.189,-3.076,-4.098,0.0,2.72,7.609,1.975
+base-mechvent-hrv-asre.xml,25.649,0.0,13.559,9.071,0.616,0.0,0.0,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.903,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.082,-3.588,-0.834,0.0,2.792,7.766,2.016
+base-mechvent-hrv.xml,25.652,0.0,13.559,9.071,0.616,0.0,0.0,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.905,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.834,0.0,2.792,7.766,2.016
+base-mechvent-multiple.xml,41.432,0.0,10.371,9.071,0.624,0.0,0.0,0.0,3.191,3.717,0.523,7.451,0.654,10.364,-12.811,0.0,0.0,0.0,8.203,-0.117,5.177,0.0,9.572,0.0,15.757,-8.004,-2.546,0.0,0.13,-0.164,-0.009,3.27,0.054,-0.447,11.602,0.0,0.0,0.0,-5.531,-0.113,-0.677,0.0,-2.031,-9.008,3.909,7.557,1.962
+base-mechvent-supply.xml,33.996,0.0,12.804,9.071,0.619,0.0,0.0,0.0,3.495,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.251,-0.087,1.634,0.0,14.182,0.0,6.949,-7.924,-2.52,0.0,0.09,-0.312,-0.03,2.998,0.017,-0.895,11.633,0.0,0.0,0.0,-5.877,-0.083,-0.243,-3.15,-3.617,0.0,2.749,7.647,1.987
+base-mechvent-whole-house-fan.xml,21.919,0.0,5.837,9.071,0.624,0.0,0.0,0.0,3.542,3.636,0.512,7.523,0.629,10.08,-12.691,0.0,0.0,0.0,8.411,-0.061,4.937,0.0,0.728,0.0,4.635,-7.799,-2.489,0.0,0.165,-0.225,-0.018,3.378,0.032,-0.685,11.723,0.0,0.0,0.0,-5.252,-0.056,-0.922,0.0,-0.129,-12.864,1.448,7.761,2.018
+base-misc-additional-properties.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-bills-pv-detailed-only.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-bills-pv-mixed.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-bills-pv.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-bills.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-defaults.xml,32.227,0.0,6.243,10.469,0.696,0.0,9.09,0.0,3.464,3.659,0.514,7.426,1.112,10.35,-12.439,0.0,0.0,0.0,8.157,-0.096,2.262,0.0,15.207,0.0,2.982,-8.104,-2.533,0.0,0.683,-0.123,-0.003,3.406,-0.202,0.395,13.738,0.0,0.0,0.0,-5.342,-0.091,-0.173,0.0,-3.481,-12.822,0.513,8.557,1.974
+base-misc-emissions.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-generators-battery-scheduled.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-generators-battery.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-generators.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-misc-ground-conductivity.xml,19.667,0.0,13.454,9.071,0.614,0.0,0.0,0.0,3.58,3.659,0.515,7.284,0.634,10.149,-12.67,0.0,0.0,0.0,6.668,-0.068,4.929,0.0,0.729,0.0,4.202,-7.788,-2.486,0.0,-0.044,-0.45,-0.05,2.452,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.041,-0.063,-1.127,-3.796,-0.164,0.0,2.734,7.795,2.021
+base-misc-loads-large-uncommon.xml,16.157,0.0,18.041,9.071,0.61,0.0,0.0,0.0,3.634,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.929,0.0,0.734,0.0,3.502,-13.214,-2.475,0.0,-0.191,-0.563,-0.066,2.446,-0.052,-1.708,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.228,-4.544,-0.178,0.0,3.416,13.832,2.033
+base-misc-loads-large-uncommon2.xml,16.157,0.0,18.041,9.071,0.61,0.0,0.0,0.0,3.634,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.929,0.0,0.734,0.0,3.502,-13.214,-2.475,0.0,-0.191,-0.563,-0.066,2.446,-0.052,-1.708,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.228,-4.544,-0.178,0.0,3.416,13.832,2.033
+base-misc-loads-none.xml,26.847,0.0,10.502,9.071,0.619,0.0,0.0,0.0,3.475,3.599,0.506,7.385,0.622,9.987,-12.743,0.0,0.0,0.0,8.162,-0.056,4.962,0.0,0.725,0.0,5.561,-3.14,-2.499,0.0,0.091,-0.336,-0.034,3.052,0.007,-1.005,11.67,0.0,0.0,0.0,-5.757,-0.052,-1.03,-3.185,-0.147,0.0,2.244,3.15,2.008
+base-misc-neighbor-shading-bldgtype-multifamily.xml,1.048,0.0,6.57,9.37,0.59,0.0,0.0,0.0,-0.014,3.74,0.0,0.0,0.409,4.038,-3.314,0.0,0.0,-0.012,0.0,-0.306,1.298,0.0,0.764,0.0,0.0,-4.72,-0.959,0.0,-0.01,-2.563,0.0,0.0,-0.006,-0.595,4.889,0.0,0.0,-0.008,0.0,-0.298,-0.364,-1.34,-0.248,0.0,0.0,6.141,1.067
+base-misc-neighbor-shading.xml,26.705,0.0,12.526,9.071,0.617,0.0,0.0,0.0,3.47,3.704,0.54,7.343,0.775,10.699,-8.751,0.0,0.0,0.0,7.85,-0.061,4.952,0.0,0.723,0.0,5.482,-7.81,-2.491,0.0,0.006,-0.443,-0.051,2.843,-0.033,-1.258,10.312,0.0,0.0,0.0,-6.071,-0.055,-1.098,-3.621,-0.157,0.0,2.546,7.768,2.016
+base-misc-shielding-of-home.xml,21.309,0.0,14.139,9.071,0.614,0.0,0.0,0.0,3.549,3.639,0.512,7.51,0.63,10.09,-12.69,0.0,0.0,0.0,8.285,-0.067,4.557,0.0,0.728,0.0,4.517,-7.796,-2.488,0.0,-0.052,-0.454,-0.05,2.708,-0.023,-1.37,11.724,0.0,0.0,0.0,-6.305,-0.063,-1.016,-3.266,-0.164,0.0,2.823,7.787,2.019
+base-misc-unit-multiplier.xml,217.531,0.0,136.108,90.712,6.149,0.0,0.0,0.0,35.447,36.376,5.119,75.056,6.297,100.868,-126.906,0.0,0.0,0.0,82.899,-0.666,49.369,0.0,7.278,0.0,46.004,-77.996,-24.887,0.0,-0.359,-4.404,-0.485,27.481,-0.198,-13.278,117.225,0.0,0.0,0.0,-62.4,-0.627,-11.189,-37.795,-1.617,0.0,27.54,77.82,20.184
+base-misc-usage-multiplier.xml,20.227,0.0,14.734,8.164,0.614,0.0,0.0,0.0,3.568,3.65,0.514,7.55,0.632,10.117,-12.671,0.0,0.0,0.0,8.337,-0.066,4.976,0.0,0.656,0.0,4.305,-9.444,-2.237,0.0,-0.076,-0.472,-0.053,2.659,-0.028,-1.431,11.745,0.0,0.0,0.0,-6.382,-0.063,-1.16,-3.981,-0.15,0.0,2.924,9.57,1.82
+base-pv-battery-ah.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-battery-garage.xml,24.031,0.0,8.972,9.071,0.723,0.0,0.0,0.0,3.534,3.796,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.426,0.0,0.0,0.0,4.349,-5.766,-2.495,0.0,0.123,-0.26,-0.033,2.466,0.004,-1.084,8.261,0.0,0.0,0.0,-5.595,-0.043,-1.19,-2.578,0.0,0.0,1.398,5.629,2.012
+base-pv-battery-round-trip-efficiency.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-battery-scheduled.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-battery.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-generators-battery-scheduled.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-generators-battery.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv-generators.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-pv.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-residents-0-runperiod-1-month.xml,7.6747,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.6052,0.6429,0.0909,1.7458,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2352,-0.0005,1.0303,0.0,0.0,0.0,1.5792,-0.1971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-residents-0.xml,31.404,0.0,10.471,0.0,0.62,0.0,0.0,0.0,3.431,3.585,0.504,7.283,0.62,9.978,-12.807,0.0,0.0,0.0,7.992,-0.062,5.51,0.0,0.0,0.0,6.406,-1.32,0.0,0.0,0.15,-0.278,-0.025,3.186,0.022,-0.819,11.63,0.0,0.0,0.0,-5.596,-0.057,-1.11,0.0,0.0,0.0,2.138,1.356,0.0
+base-residents-1-misc-loads-large-uncommon.xml,20.236,0.0,14.816,3.56,0.614,0.0,0.0,0.0,3.572,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.932,0.0,0.727,0.0,4.311,-9.276,-2.485,0.0,-0.084,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.148,-3.992,-0.166,0.0,2.939,9.517,2.022
+base-residents-1-misc-loads-large-uncommon2.xml,20.236,0.0,14.816,3.56,0.614,0.0,0.0,0.0,3.572,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.932,0.0,0.727,0.0,4.311,-9.276,-2.485,0.0,-0.084,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.148,-3.992,-0.166,0.0,2.939,9.517,2.022
+base-residents-1.xml,23.263,0.0,12.668,3.56,0.616,0.0,0.0,0.0,3.526,3.628,0.51,7.477,0.628,10.062,-12.698,0.0,0.0,0.0,8.261,-0.064,4.941,0.0,0.725,0.0,4.894,-6.452,-2.49,0.0,-0.005,-0.416,-0.045,2.824,-0.013,-1.249,11.715,0.0,0.0,0.0,-6.122,-0.06,-1.094,-3.596,-0.158,0.0,2.603,6.439,2.017
+base-residents-5.xml,30.46,0.0,6.61,18.155,0.645,0.0,11.919,0.0,3.776,3.671,0.517,7.465,0.64,10.323,-12.409,0.0,0.0,0.0,8.247,-0.089,2.128,0.0,15.244,0.0,2.822,-9.626,-2.516,0.0,0.231,-0.177,-0.011,3.371,0.048,0.287,13.769,0.0,0.0,0.0,-5.37,-0.085,-0.168,0.0,-3.611,-13.384,0.542,10.074,1.991
+base-schedules-detailed-all-10-mins.xml,21.621,0.0,14.09,9.053,0.639,0.0,0.0,0.0,3.611,3.668,0.517,7.592,0.642,10.186,-12.603,0.0,0.0,0.0,8.335,-0.064,5.385,0.0,0.78,0.0,4.612,-8.838,-2.51,0.0,-0.158,-0.469,-0.053,2.756,-0.027,-1.374,11.75,0.0,0.0,0.0,-6.238,-0.058,-1.231,-3.664,-0.171,0.0,2.89,8.293,2.0
+base-schedules-detailed-mixed-timesteps-power-outage.xml,4.569,0.0,8.907,7.3,0.563,0.0,0.0,0.0,2.598,2.444,0.341,4.234,0.331,6.442,-12.497,0.0,0.0,0.0,3.628,-0.104,3.383,0.0,0.383,0.0,0.936,-6.224,-1.596,0.0,-0.195,-0.548,-0.064,2.502,-0.052,-1.653,11.861,0.0,0.0,0.0,-7.403,-0.057,-1.308,-6.168,-0.205,0.0,1.904,8.433,2.023
+base-schedules-detailed-mixed-timesteps.xml,7.54,0.0,8.952,9.053,0.672,0.0,0.0,0.0,2.908,2.799,0.392,5.377,0.419,7.492,-12.492,0.0,0.0,0.0,5.492,-0.058,3.874,0.0,0.58,0.0,1.584,-8.621,-2.486,0.0,-0.199,-0.552,-0.065,2.507,-0.053,-1.662,11.861,0.0,0.0,0.0,-7.334,-0.056,-1.31,-6.186,-0.206,0.0,1.912,8.433,2.023
+base-schedules-detailed-occupancy-stochastic-10-mins.xml,21.167,0.0,13.89,8.987,0.616,0.0,0.0,0.0,3.559,3.646,0.513,7.53,0.631,10.108,-12.678,0.0,0.0,0.0,8.324,-0.063,5.387,0.0,0.764,0.0,4.478,-8.848,-2.502,0.0,-0.039,-0.441,-0.049,2.741,-0.02,-1.333,11.735,0.0,0.0,0.0,-6.251,-0.059,-1.246,-3.801,-0.187,0.0,2.791,8.348,1.98
+base-schedules-detailed-occupancy-stochastic-power-outage.xml,13.373,0.0,13.773,7.313,0.518,0.0,0.0,0.0,3.067,3.06,0.429,5.684,0.487,8.36,-12.688,0.0,0.0,0.0,5.15,-0.157,4.417,0.0,0.513,0.0,2.762,-6.403,-1.622,0.0,-0.038,-0.441,-0.049,2.728,-0.02,-1.332,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.23,-3.798,-0.184,0.0,2.768,8.264,2.005
+base-schedules-detailed-occupancy-stochastic-vacancy.xml,24.758,0.0,13.849,7.303,0.615,0.0,0.0,0.0,3.509,3.621,0.509,7.451,0.625,10.036,-12.686,0.0,0.0,0.0,8.159,-0.063,5.388,0.0,0.513,0.0,5.165,-6.175,-1.615,0.0,-0.042,-0.445,-0.049,2.735,-0.021,-1.348,11.732,0.0,0.0,0.0,-6.263,-0.058,-1.235,-3.814,-0.184,0.0,2.78,8.275,2.007
+base-schedules-detailed-occupancy-stochastic.xml,21.144,0.0,13.851,9.071,0.615,0.0,0.0,0.0,3.556,3.643,0.513,7.527,0.63,10.097,-12.674,0.0,0.0,0.0,8.314,-0.063,5.337,0.0,0.777,0.0,4.475,-8.818,-2.502,0.0,-0.043,-0.446,-0.049,2.735,-0.022,-1.348,11.739,0.0,0.0,0.0,-6.263,-0.059,-1.235,-3.815,-0.184,0.0,2.781,8.277,2.008
+base-schedules-detailed-setpoints-daily-schedules.xml,20.8,0.0,11.695,9.071,0.617,0.0,0.0,0.0,3.502,3.568,0.501,7.484,0.605,9.792,-12.687,0.0,0.0,0.0,8.632,0.008,4.795,0.0,0.725,0.0,4.312,-7.752,-2.486,0.0,-0.044,-0.468,-0.053,2.705,-0.034,-1.489,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.178,-4.193,-0.17,0.0,2.156,7.825,2.022
+base-schedules-detailed-setpoints-daily-setbacks.xml,20.44,0.0,12.268,9.071,0.617,0.0,0.0,0.0,3.496,3.553,0.499,7.325,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.769,0.0,0.723,0.0,4.217,-7.768,-2.488,0.0,-0.031,-0.468,-0.053,2.647,-0.033,-1.492,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.164,-4.138,-0.172,0.0,2.315,7.808,2.019
+base-schedules-detailed-setpoints.xml,7.634,0.0,8.338,9.071,0.649,0.0,0.0,0.0,2.816,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.369,-0.059,3.482,0.0,0.566,0.0,1.589,-7.591,-2.465,0.0,-0.07,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.184,-6.334,-0.18,0.0,1.758,7.912,2.042
+base-schedules-simple-power-outage.xml,21.069,0.0,10.353,8.477,0.581,0.0,0.0,0.0,3.555,3.641,0.512,7.518,0.63,10.09,-12.683,0.0,0.0,0.0,8.283,-0.063,4.893,0.0,0.795,0.0,4.465,-8.411,-2.488,0.0,-0.087,-0.521,-0.06,2.522,-0.041,-1.582,11.731,0.0,0.0,0.0,-6.565,-0.059,-1.198,-4.377,-0.172,0.0,2.05,7.245,1.711
+base-schedules-simple-vacancy.xml,24.613,0.0,13.988,7.337,0.615,0.0,0.0,0.0,3.509,3.619,0.509,7.447,0.625,10.031,-12.688,0.0,0.0,0.0,8.147,-0.064,5.077,0.0,0.552,0.0,5.142,-6.041,-1.573,0.0,-0.049,-0.451,-0.05,2.713,-0.023,-1.368,11.73,0.0,0.0,0.0,-6.295,-0.059,-1.109,-3.867,-0.197,0.0,2.81,8.377,2.019
+base-schedules-simple.xml,21.053,0.0,13.99,9.105,0.614,0.0,0.0,0.0,3.555,3.641,0.512,7.519,0.63,10.09,-12.683,0.0,0.0,0.0,8.295,-0.063,4.932,0.0,0.729,0.0,4.462,-8.411,-2.488,0.0,-0.05,-0.452,-0.05,2.712,-0.023,-1.369,11.73,0.0,0.0,0.0,-6.294,-0.059,-1.132,-3.871,-0.164,0.0,2.809,8.377,2.019
+base-simcontrol-calendar-year-custom.xml,21.755,0.0,13.445,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.066,4.937,0.0,0.728,0.0,4.601,-7.8,-2.489,0.0,-0.032,-0.438,-0.048,2.764,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.231,-0.062,-1.117,-3.948,-0.161,0.0,2.723,7.782,2.018
+base-simcontrol-daylight-saving-custom.xml,21.753,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+base-simcontrol-daylight-saving-disabled.xml,21.742,0.0,13.554,9.071,0.615,0.0,0.0,0.0,3.544,3.636,0.512,7.506,0.629,10.074,-12.69,0.0,0.0,0.0,8.286,-0.062,4.933,0.0,0.725,0.0,4.598,-7.793,-2.487,0.0,-0.036,-0.442,-0.049,2.744,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.242,-0.058,-1.125,-3.794,-0.159,0.0,2.73,7.788,2.02
+base-simcontrol-runperiod-1-month.xml,7.8584,0.0,0.0,0.9244,0.0547,0.0,0.0,0.0,0.6024,0.659,0.0933,2.0513,0.1156,1.8292,-2.373,0.0,0.0,0.0,3.8053,0.013,0.9241,0.0,0.1225,0.0,1.6148,-1.2712,-0.3948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+base-simcontrol-temperature-capacitance-multiplier.xml,21.758,0.0,13.273,9.071,0.615,0.0,0.0,0.0,3.612,3.633,0.511,7.501,0.627,10.055,-12.69,0.0,0.0,0.0,8.265,-0.055,4.931,0.0,0.726,0.0,4.594,-7.787,-2.487,0.0,-0.199,-0.437,-0.048,2.759,-0.02,-1.337,11.724,0.0,0.0,0.0,-6.235,-0.051,-1.127,-3.882,-0.16,0.0,2.625,7.794,2.02
+base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,21.635,0.0,14.084,9.074,0.617,0.0,0.0,0.0,3.611,3.668,0.517,7.591,0.642,10.187,-12.602,0.0,0.0,0.0,8.335,-0.064,5.385,0.0,0.78,0.0,4.615,-8.827,-2.51,0.0,-0.158,-0.469,-0.053,2.757,-0.027,-1.373,11.752,0.0,0.0,0.0,-6.238,-0.059,-1.23,-3.662,-0.171,0.0,2.889,8.282,2.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,21.574,0.0,14.075,9.071,0.615,0.0,0.0,0.0,3.611,3.667,0.517,7.59,0.642,10.183,-12.602,0.0,0.0,0.0,8.332,-0.062,5.336,0.0,0.771,0.0,4.605,-8.82,-2.502,0.0,-0.159,-0.47,-0.054,2.755,-0.027,-1.377,11.752,0.0,0.0,0.0,-6.24,-0.058,-1.216,-3.666,-0.183,0.0,2.886,8.274,2.008
+base-simcontrol-timestep-10-mins.xml,22.197,0.0,13.826,9.071,0.615,0.0,0.0,0.0,3.601,3.662,0.516,7.569,0.641,10.17,-12.616,0.0,0.0,0.0,8.308,-0.063,4.923,0.0,0.733,0.0,4.735,-7.799,-2.488,0.0,-0.151,-0.463,-0.053,2.773,-0.026,-1.354,11.737,0.0,0.0,0.0,-6.209,-0.059,-1.093,-3.621,-0.168,0.0,2.858,7.782,2.019
+base-simcontrol-timestep-30-mins.xml,22.039,0.0,13.718,9.071,0.615,0.0,0.0,0.0,3.582,3.654,0.515,7.542,0.638,10.152,-12.641,0.0,0.0,0.0,8.296,-0.064,4.925,0.0,0.731,0.0,4.682,-7.799,-2.488,0.0,-0.121,-0.458,-0.052,2.768,-0.024,-1.356,11.738,0.0,0.0,0.0,-6.22,-0.06,-1.101,-3.681,-0.166,0.0,2.798,7.783,2.019
+base.xml,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018
+house001.xml,18.93,0.0,53.188,10.404,2.679,0.0,0.0,0.486,1.955,7.214,0.417,0.0,0.974,7.105,-4.957,0.0,0.0,0.478,1.22,-0.297,4.287,0.0,5.127,0.0,3.331,-5.635,-2.914,0.563,1.942,3.55,0.296,0.0,0.215,2.639,13.842,0.0,0.0,0.502,6.627,-0.283,-0.426,-1.952,-0.777,0.0,11.325,10.875,4.462
+house002.xml,11.699,0.0,41.854,7.517,2.891,0.0,0.0,0.0,2.52,5.023,0.0,0.0,0.839,5.689,-4.078,0.0,0.0,0.0,1.724,-0.163,1.573,0.0,3.773,0.0,1.417,-4.3,-2.477,0.0,3.013,2.694,0.0,0.0,0.4,1.135,10.398,0.0,0.0,0.0,8.187,-0.156,-0.19,-1.428,-0.663,0.0,6.187,8.576,3.901
+house003.xml,12.752,0.0,44.086,7.518,2.689,0.0,0.0,0.645,2.769,4.641,0.0,0.0,0.972,6.22,-3.922,0.0,0.0,0.0,1.046,-0.192,1.99,0.0,3.923,0.0,1.655,-4.48,-2.678,0.788,2.978,2.498,0.0,0.0,0.631,1.946,11.834,0.0,0.0,0.0,6.22,-0.184,-0.23,-1.488,-0.666,0.0,6.92,8.875,4.194
+house004.xml,36.882,0.0,113.424,8.975,3.511,0.0,0.0,0.127,5.464,11.273,0.0,0.0,1.243,13.597,-5.923,0.0,0.0,0.0,3.024,-0.801,5.024,0.0,6.237,0.0,7.23,-6.122,-3.799,0.198,6.582,11.518,0.0,0.0,0.504,8.865,20.874,0.0,0.0,0.0,18.438,-0.788,1.046,0.0,1.818,0.0,22.315,14.659,7.757
+house005.xml,22.063,0.0,64.953,8.975,2.732,0.0,0.0,0.0,2.992,8.12,0.266,0.0,1.349,9.361,-6.645,0.0,0.0,0.393,1.228,-0.391,5.026,0.0,5.055,0.0,4.471,-5.755,-3.607,0.0,2.88,4.029,0.204,0.0,0.241,3.673,18.514,0.0,0.0,0.397,7.201,-0.373,-0.52,-2.494,-0.781,0.0,15.574,11.147,5.543
+house006.xml,78.701,0.0,8.403,13.079,3.279,0.0,0.0,0.0,4.253,22.244,1.988,37.092,1.862,17.604,-9.44,0.0,0.0,0.0,9.259,-0.341,8.592,0.0,4.364,0.0,0.0,-13.229,-6.359,0.0,0.166,-0.837,-0.049,2.756,-0.087,-0.177,5.071,0.0,0.0,0.0,-3.94,-0.34,-0.441,-1.64,-0.074,0.0,0.0,5.775,2.323
+house007.xml,72.202,0.0,6.439,15.626,3.27,0.0,0.0,0.0,4.708,23.655,4.442,10.097,1.497,18.806,-9.372,0.0,0.0,0.076,11.538,-0.406,6.127,0.0,20.808,0.0,2.922,-15.539,-7.655,0.0,0.196,-0.747,-0.061,0.538,-0.047,0.084,5.413,0.0,0.0,-0.009,-4.042,-0.402,-0.19,-1.432,-1.884,0.0,0.119,6.363,2.638
+house008.xml,105.001,0.0,11.206,18.122,3.214,0.0,0.0,0.0,7.218,27.486,4.711,24.288,1.198,21.284,-7.842,0.0,0.0,1.297,17.844,-0.444,17.342,0.0,6.386,0.0,8.195,-16.717,-8.078,0.0,0.295,-1.174,-0.067,1.581,-0.09,0.067,6.352,0.0,0.0,-0.117,-2.821,-0.444,-0.894,-1.837,-0.277,0.0,0.58,7.243,2.921
+house009.xml,86.278,0.0,6.172,15.626,3.276,0.0,0.0,0.0,5.092,28.364,4.312,13.019,2.25,18.86,-8.186,0.0,0.0,0.265,15.608,-0.432,8.706,0.0,21.415,0.0,0.0,-15.768,-7.743,0.0,0.228,-0.783,-0.041,0.681,-0.079,0.208,5.46,0.0,0.0,-0.029,-4.18,-0.429,-0.258,-1.333,-1.812,0.0,0.0,6.109,2.523
+house010.xml,78.879,0.0,8.192,18.122,3.214,0.0,0.0,0.872,4.92,25.49,4.912,9.743,1.271,22.942,-9.202,0.0,0.0,0.938,11.377,-0.453,18.568,0.0,6.397,0.0,5.276,-16.71,-8.051,0.021,0.206,-0.817,-0.103,0.507,-0.077,-0.324,6.034,0.0,0.0,-0.055,-4.219,-0.45,-0.935,-1.755,-0.265,0.0,0.371,7.23,2.93
+house011.xml,16.028,0.157,26.7,9.316,1.124,0.0,0.0,0.0,2.656,5.463,0.0,0.0,1.649,3.51,-3.163,0.0,0.0,1.87,0.0,-0.405,1.852,0.0,5.455,0.0,4.465,-5.244,-2.075,0.0,1.616,1.233,0.0,0.0,0.16,0.629,6.488,0.0,0.0,0.725,0.0,-0.404,-0.185,-0.304,-0.958,0.0,6.867,8.132,2.827
+house012.xml,10.603,0.0,16.822,7.775,1.158,0.0,0.0,0.0,2.358,4.746,0.0,0.0,0.63,2.691,-1.84,0.0,0.0,2.029,0.0,-0.27,1.654,0.0,4.379,0.0,0.342,-4.181,-1.926,0.0,1.696,1.065,0.0,0.0,-0.034,0.795,4.208,0.0,0.0,1.55,0.0,-0.27,-0.154,-0.275,-0.711,0.0,0.286,6.286,2.45
+house013.xml,6.695,0.0,15.516,6.844,0.854,0.0,0.0,0.0,1.63,2.869,0.0,0.0,0.66,2.641,-2.189,0.0,0.0,2.103,0.0,-0.276,1.733,0.0,1.073,0.0,1.245,-3.291,-1.519,0.0,1.071,0.386,0.0,0.0,-0.087,0.526,4.372,0.0,0.0,0.548,0.0,-0.276,-0.26,-0.342,-0.263,0.0,1.496,5.987,2.444
+house014.xml,8.128,0.008,17.35,6.844,0.598,0.0,0.0,0.0,1.695,3.693,0.0,0.0,0.586,3.038,-2.511,0.0,0.0,2.203,0.0,-0.249,1.943,0.0,1.123,0.0,1.537,-3.337,-1.619,0.0,1.115,0.528,0.0,0.0,-0.069,0.933,5.567,0.0,0.0,0.588,0.0,-0.249,-0.26,-0.385,-0.25,0.0,1.73,5.769,2.432
+house015.xml,6.695,0.0,15.516,6.844,0.854,0.0,0.0,0.0,1.63,2.869,0.0,0.0,0.66,2.641,-2.189,0.0,0.0,2.103,0.0,-0.276,1.733,0.0,1.073,0.0,1.245,-3.291,-1.519,0.0,1.071,0.386,0.0,0.0,-0.087,0.526,4.372,0.0,0.0,0.548,0.0,-0.276,-0.26,-0.342,-0.263,0.0,1.496,5.987,2.444
+house016.xml,25.676,0.2,11.075,10.47,0.0,0.0,0.0,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852
+house017.xml,42.966,0.0,9.661,11.132,3.429,0.0,0.0,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676
+house018.xml,9.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167
+house019.xml,69.542,0.0,43.367,7.887,1.827,0.0,0.0,0.0,11.376,44.742,0.649,4.997,1.919,16.393,-14.227,0.0,0.0,0.0,5.939,-0.058,8.895,0.0,1.868,0.0,0.0,-9.364,-5.112,0.0,2.992,10.191,0.15,2.861,0.274,1.619,17.005,0.0,0.0,0.0,-4.229,-0.045,-0.147,-0.549,0.025,0.0,0.0,8.111,3.806
+house020.xml,37.003,0.0,32.561,10.47,4.231,0.0,0.0,0.905,10.974,10.526,1.128,9.723,0.63,15.107,-15.183,0.0,0.0,0.0,7.43,-0.035,15.222,0.0,0.835,0.0,0.0,-13.621,-6.997,0.25,0.229,0.292,0.065,6.495,0.019,-2.378,20.686,0.0,0.0,0.0,-6.534,-0.025,-2.589,-3.085,-0.19,0.0,0.0,13.724,5.746
+house021.xml,75.135,0.0,17.706,10.98,3.821,0.0,0.0,0.0,8.26,27.041,2.42,9.152,0.859,21.809,-20.304,0.0,0.0,1.092,9.421,-0.34,26.657,0.0,2.49,0.0,6.202,-13.373,-6.862,0.0,0.067,-0.68,0.022,2.244,-0.088,-2.169,14.671,0.0,0.0,0.043,-5.98,-0.317,-2.326,-1.373,-0.378,0.0,1.216,9.112,3.772
+house022.xml,74.231,0.0,18.685,10.98,1.483,0.0,0.0,3.679,3.754,20.597,0.0,0.0,1.485,16.588,-13.15,0.0,0.0,14.629,0.0,-0.285,37.702,0.0,1.155,0.0,0.0,-8.491,-4.277,1.127,0.188,0.722,0.0,0.0,-0.113,-1.346,11.437,0.0,0.0,2.129,0.0,-0.276,-2.538,-1.143,-0.067,0.0,0.0,5.99,2.409
+house023.xml,64.144,0.0,15.975,17.089,2.771,0.0,0.0,0.0,10.207,21.479,1.2,16.388,0.85,9.987,-7.816,0.0,0.0,0.0,6.155,-0.059,23.718,0.0,1.636,0.0,0.0,-14.037,-5.919,0.0,-0.145,-0.924,-0.008,6.022,-0.11,-0.995,9.137,0.0,0.0,0.0,-5.965,-0.037,-2.587,-1.358,-0.309,0.0,0.0,10.041,3.296
+house024.xml,71.617,0.0,15.305,14.642,2.089,0.0,0.0,0.0,7.178,30.02,0.0,0.0,0.682,7.226,-7.905,0.0,0.0,5.082,0.0,-0.118,25.395,0.0,1.84,0.0,11.928,-7.457,-2.541,0.0,0.621,1.357,0.0,0.0,-0.037,-0.258,5.994,0.0,0.0,0.568,0.0,-0.111,-1.368,-0.637,-0.185,0.0,2.915,5.131,1.373
+house025.xml,37.641,0.0,47.484,8.315,3.831,0.0,0.0,0.0,3.377,17.567,0.0,0.0,2.17,7.405,-5.706,0.0,0.0,6.826,0.0,-1.341,13.757,0.001,0.41,0.0,5.032,-7.951,-3.985,0.0,1.098,5.727,0.0,0.0,0.446,1.957,12.402,0.0,0.0,5.586,0.0,-1.34,-0.7,-0.276,-0.004,0.0,6.312,11.261,5.273
+house026.xml,14.338,0.0,0.0,8.599,2.068,0.0,0.0,0.0,1.77,6.836,0.232,0.0,0.196,4.363,-2.949,0.0,0.0,7.064,0.0,-0.043,2.489,0.0,3.124,0.0,0.0,-5.771,-3.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
+house027.xml,20.525,0.0,22.332,8.556,5.271,0.0,0.0,0.72,1.784,7.895,0.452,0.0,0.592,4.939,-4.011,0.0,0.0,0.32,3.229,-0.164,1.454,0.0,10.431,0.0,1.936,-6.271,-2.846,0.486,1.109,0.746,0.061,0.0,-0.107,0.944,6.599,0.0,0.0,0.147,3.815,-0.164,-0.271,-1.585,-3.306,0.0,2.015,8.68,3.099
+house028.xml,13.39,0.0,23.823,10.217,3.622,0.0,0.0,0.767,1.656,7.153,0.356,0.0,0.439,4.923,-3.839,0.0,0.0,0.244,2.461,-0.056,4.054,0.0,4.47,0.0,1.499,-7.968,-2.892,0.601,1.183,-0.513,0.103,0.0,0.06,0.971,7.616,0.0,0.0,0.063,1.801,-0.057,-1.05,-2.186,-1.617,0.0,2.478,11.155,3.242
+house029.xml,32.452,0.0,14.45,9.606,0.0,0.0,0.0,0.0,3.338,14.509,0.39,0.0,0.294,6.21,-6.033,0.0,0.0,6.82,0.0,-0.091,7.273,0.0,7.262,0.0,3.273,-7.279,-3.665,0.0,1.114,-0.802,0.007,0.0,0.068,1.13,6.503,0.0,0.0,-0.638,0.0,-0.086,-0.806,-1.957,-1.54,0.0,1.555,7.086,2.874
+house030.xml,18.16,0.0,0.0,7.708,2.213,0.0,0.0,0.0,1.653,10.111,0.483,1.092,1.034,5.176,-3.262,0.0,0.0,0.0,3.389,-0.048,2.721,0.0,5.679,0.0,0.0,-7.069,-2.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
+house031.xml,121.74,0.0,39.491,17.919,5.236,0.0,0.0,0.0,14.436,41.981,1.048,6.618,1.392,20.047,-16.789,0.0,0.0,1.977,6.044,-0.86,56.94,0.001,0.653,0.0,9.877,-15.327,-6.477,0.0,2.267,5.191,0.176,2.824,0.116,0.499,16.921,0.0,0.0,0.227,-3.598,-0.827,-1.831,-0.833,-0.009,0.0,3.051,10.994,3.878
+house032.xml,50.391,0.0,0.0,7.996,4.946,0.0,0.0,0.0,10.388,8.743,1.918,20.355,1.409,8.345,-9.322,0.0,0.0,0.0,4.513,0.015,14.965,0.0,0.623,0.0,0.0,-8.206,-3.285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house033.xml,64.29,0.0,0.0,3.531,0.0,0.0,0.0,0.0,19.12,14.557,0.0,0.0,1.0,11.111,-7.528,0.0,0.0,14.642,0.0,-0.368,18.592,0.0,0.791,0.0,0.0,-4.617,-3.316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house034.xml,64.387,0.0,0.0,11.564,5.444,0.0,0.0,0.0,8.856,26.894,0.0,2.842,1.895,26.585,-26.228,0.0,0.0,10.893,2.685,0.049,34.727,0.0,0.57,0.0,0.0,-14.646,-10.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house035.xml,27.469,0.0,2.545,3.916,3.836,0.0,0.0,0.365,6.108,10.785,0.0,0.0,0.534,6.072,-7.324,0.0,0.0,7.708,0.0,0.006,13.582,0.0,0.488,0.0,0.0,-7.184,-3.475,0.065,-0.497,-1.432,0.0,0.0,-0.076,-1.356,7.069,0.0,0.0,-4.261,0.0,0.011,-2.603,-1.198,-0.123,0.0,0.0,5.102,1.96
+house036.xml,32.95,0.0,13.749,8.213,5.849,0.0,0.0,5.495,2.25,3.959,0.0,0.0,1.819,6.784,-7.199,0.0,0.0,20.975,0.0,-0.011,7.394,0.0,0.552,0.0,0.0,-5.657,-3.433,1.639,0.148,0.018,0.0,0.0,-0.203,-0.839,5.702,0.0,0.0,2.612,0.0,-0.011,-0.703,-0.947,-0.057,0.0,0.0,4.264,2.013
+house037.xml,38.243,0.0,0.0,7.424,0.0,0.0,0.0,0.0,16.726,11.32,0.0,0.0,1.564,7.658,-10.359,0.0,0.0,6.485,0.0,-0.377,14.717,0.0,0.46,0.0,0.0,-6.013,-3.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,0.0,0.0,0.0,0.0,0.0,0.0
+house038.xml,41.305,0.0,30.436,14.704,4.602,0.0,0.0,0.0,3.648,14.874,0.65,4.429,0.81,12.438,-10.449,0.0,0.0,1.856,2.334,-0.09,22.508,0.002,0.594,0.0,0.0,-8.966,-3.828,0.0,0.85,2.636,0.142,2.236,0.02,0.963,12.735,0.0,0.0,0.337,-0.579,-0.079,-0.53,-0.333,0.006,0.0,0.0,8.232,3.077
+house039.xml,47.006,0.0,0.0,14.261,1.139,0.0,0.0,0.0,14.176,5.359,0.0,0.0,2.503,16.085,-13.551,0.0,0.0,13.942,0.0,-0.055,13.236,0.0,0.554,0.0,0.0,-2.832,-2.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house040.xml,57.969,0.0,0.0,7.996,5.526,0.0,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+house041.xml,177.356,0.0,4.958,15.626,5.045,0.0,0.0,0.0,11.225,44.885,3.505,34.926,3.133,39.076,-19.656,0.0,0.0,4.591,17.264,-0.566,64.044,0.0,2.76,0.0,0.0,-18.488,-10.896,0.0,0.085,-2.192,-0.127,1.612,-0.221,-2.52,10.639,0.0,0.0,-0.358,-5.283,-0.563,-3.396,-2.106,-0.253,0.0,0.0,6.721,3.039
+house042.xml,166.788,0.0,2.853,15.626,3.233,0.0,0.0,0.0,9.153,39.725,4.0,43.57,2.643,34.455,-18.132,0.0,0.0,2.441,14.445,-0.329,56.25,0.0,1.747,0.0,0.0,-17.459,-7.571,0.0,0.191,-1.491,-0.065,2.811,-0.149,-2.784,6.491,0.0,0.0,-0.264,-4.932,-0.325,-2.742,-1.256,-0.14,0.0,0.0,5.602,1.962
+house043.xml,105.37,0.0,2.839,13.079,2.212,0.0,0.0,0.0,3.161,23.126,2.288,33.655,5.564,23.082,-9.324,0.0,0.0,0.548,9.886,-0.285,28.962,0.0,1.574,0.0,0.0,-13.094,-5.138,0.0,0.035,-0.828,-0.09,1.692,-0.346,-1.857,5.129,0.0,0.0,-0.068,-3.557,-0.285,-1.53,-1.103,-0.141,0.0,0.0,4.448,1.421
+house044.xml,151.225,0.0,3.764,13.079,4.457,0.0,0.0,4.361,6.882,36.401,9.207,19.228,2.75,18.107,-10.889,0.0,0.0,12.879,15.008,-0.487,61.984,0.0,1.432,0.0,0.0,-16.566,-10.173,0.237,0.437,-1.419,-0.123,1.194,-0.12,-0.606,6.266,0.0,0.0,-1.143,-4.849,-0.484,-2.668,-1.025,-0.1,0.0,0.0,5.455,2.774
+house045.xml,88.947,0.0,4.195,13.079,4.37,0.0,0.0,3.564,3.071,15.097,2.286,32.688,1.133,17.827,-11.713,0.966,-0.417,0.086,12.614,-0.25,20.662,0.0,10.923,0.0,0.0,-13.353,-6.961,-0.012,0.005,-1.071,-0.123,0.956,-0.085,-1.077,7.066,-0.063,0.396,-0.013,-4.021,-0.249,-1.143,-2.015,-1.231,0.0,0.0,4.872,2.099
+house046.xml,14.368,0.352,13.527,4.303,0.617,0.0,0.0,0.0,2.508,3.823,0.0,0.0,0.326,2.208,-1.681,0.0,0.0,-0.157,0.0,-0.307,8.058,0.0,0.376,0.0,2.948,-3.211,-0.473,0.0,1.254,2.498,0.0,0.0,0.022,1.066,2.959,0.0,0.0,-0.156,0.0,-0.306,-0.437,-0.24,0.018,0.0,1.865,4.485,0.556
+house047.xml,6.478,0.0,1.652,4.202,0.0,0.0,0.0,0.0,-0.001,0.77,0.126,0.0,0.0,1.718,-0.566,0.0,0.0,0.0,1.354,-0.012,1.577,0.0,4.97,0.0,0.218,-3.191,-0.509,0.0,-0.0,0.099,0.032,0.0,0.0,0.045,0.978,0.0,0.0,0.0,-1.14,-0.012,-0.224,-0.394,-1.358,0.0,-0.0,3.217,0.411
+house048.xml,29.756,0.0,54.039,7.249,2.652,0.0,0.0,1.013,2.599,11.947,0.0,0.0,0.802,4.476,-2.656,0.0,0.0,0.056,1.965,-0.582,7.141,0.0,4.211,0.0,6.466,-6.3,-1.482,1.341,1.0,9.236,0.0,0.0,0.563,4.719,5.319,0.0,0.0,0.075,9.919,-0.57,0.639,-0.643,1.923,0.0,7.363,11.194,2.207
+house049.xml,6.917,0.0,32.413,4.258,1.314,0.0,0.0,0.0,1.322,4.228,0.0,0.0,0.0,4.079,-5.77,0.0,0.0,0.0,1.239,-0.081,2.424,0.0,1.805,0.0,0.0,-1.973,-0.459,0.0,1.658,6.999,0.0,0.0,0.0,3.722,12.1,0.0,0.0,0.0,3.275,-0.08,-0.229,-3.302,0.609,0.0,0.0,7.194,1.014
+house050.xml,16.084,0.0,6.278,8.571,0.0,0.0,0.0,0.0,4.133,6.509,0.0,0.0,2.031,5.119,-4.2,0.0,0.0,4.887,0.0,-0.175,2.297,0.0,3.676,0.0,1.971,-9.028,-1.204,0.0,-0.304,-0.319,0.0,0.0,-0.39,0.857,4.931,0.0,0.0,-0.995,0.0,-0.173,-0.453,-2.684,-0.736,0.0,0.719,5.286,0.578
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv
new file mode 100644
index 0000000000..ff8acb6b3a
--- /dev/null
+++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv
@@ -0,0 +1,143 @@
+HPXML,Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Resilience: Battery (hr)
+base-lighting-ceiling-fans-label-energy-use.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.7,3522.6,3522.6,22.816,18.078,0.0
+base-lighting-ceiling-fans.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.7,3492.3,3492.3,22.816,17.998,0.0
+base-lighting-holiday.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2426.0,3779.1,3779.1,22.816,18.188,0.0
+base-lighting-kwh-per-year.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2393.5,3877.8,3877.8,22.524,18.775,0.0
+base-lighting-mixed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2063.1,3786.4,3786.4,22.816,18.188,0.0
+base-lighting-none-ceiling-fans.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1609.4,3129.5,3129.5,23.228,17.142,0.0
+base-lighting-none.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1609.4,3091.0,3091.0,23.228,17.345,0.0
+base-location-AMY-2012.xml,0.0,0.0,1358.5,1000.7,11355.8,2605.8,2056.4,2798.8,2798.8,23.331,14.874,0.0
+base-location-baltimore-md.xml,0.0,0.0,1354.7,998.0,10815.2,2664.9,1627.2,2631.9,2631.9,13.942,14.583,0.0
+base-location-capetown-zaf.xml,0.0,0.0,1354.7,998.0,10368.9,2554.9,2009.6,2282.8,2323.8,4.457,12.926,0.0
+base-location-dallas-tx.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,1781.8,2919.9,2919.9,10.032,15.523,0.0
+base-location-detailed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2058.8,3778.8,3778.8,22.82,18.185,0.0
+base-location-duluth-mn.xml,0.0,0.0,1354.7,998.0,11924.5,2831.6,1652.2,2535.4,2535.4,26.749,11.802,0.0
+base-location-helena-mt.xml,0.0,0.0,1354.7,998.0,11614.9,2665.3,2138.4,2966.1,2966.1,29.659,14.494,0.0
+base-location-honolulu-hi.xml,0.0,0.0,1354.7,998.0,8369.7,2062.3,2055.7,2194.8,2415.4,0.0,13.198,0.0
+base-location-miami-fl.xml,0.0,0.0,1354.7,998.0,8452.8,2082.8,2034.7,2569.8,2569.8,0.0,13.745,0.0
+base-location-phoenix-az.xml,0.0,0.0,1354.7,998.0,8260.6,2035.4,2365.6,3621.9,3621.9,1.046,18.988,0.0
+base-location-portland-or.xml,0.0,0.0,1354.7,998.0,11014.7,2714.0,1622.4,2828.7,2828.7,9.005,14.888,0.0
+base-mechvent-balanced.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2158.1,3827.0,3827.0,32.058,21.218,0.0
+base-mechvent-bath-kitchen-fans.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2054.5,3678.0,3678.0,25.149,19.957,0.0
+base-mechvent-cfis-airflow-fraction-zero.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2082.2,3928.4,3928.4,28.937,20.156,0.0
+base-mechvent-cfis-dse.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2079.6,3207.2,3207.2,21.568,13.622,0.0
+base-mechvent-cfis-evap-cooler-only-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2018.0,2374.4,2374.4,0.0,16.453,0.0
+base-mechvent-cfis-supplemental-fan-exhaust.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2082.3,3644.9,3644.9,28.938,20.084,0.0
+base-mechvent-cfis-supplemental-fan-supply.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2082.3,3646.5,3646.5,28.937,20.098,0.0
+base-mechvent-cfis.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2081.8,3982.5,3982.5,28.936,20.086,0.0
+base-mechvent-erv-atre-asre.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2122.4,3601.5,3601.5,25.051,19.093,0.0
+base-mechvent-erv.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2122.4,3601.6,3601.6,25.052,19.093,0.0
+base-mechvent-exhaust-rated-flow-rate.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.6,3755.5,3755.5,30.136,20.894,0.0
+base-mechvent-exhaust.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.6,3755.5,3755.5,30.136,20.894,0.0
+base-mechvent-hrv-asre.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2122.4,3602.8,3602.8,25.05,19.095,0.0
+base-mechvent-hrv.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2122.4,3602.9,3602.9,25.051,19.095,0.0
+base-mechvent-multiple.xml,0.0,7.0,1354.7,998.0,11171.5,2563.5,2189.1,4106.9,4106.9,36.691,22.387,0.0
+base-mechvent-supply.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2094.4,3691.8,3691.8,28.805,20.247,0.0
+base-mechvent-whole-house-fan.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.7,3375.2,3375.2,22.816,15.265,0.0
+base-misc-additional-properties.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-bills-pv-detailed-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-bills-pv-mixed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-bills-pv.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-bills.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-defaults.xml,0.0,0.0,1610.3,1574.8,10333.8,3641.8,2336.5,3248.4,3248.4,27.458,16.79,2.817
+base-misc-emissions.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.4,3853.4,3853.4,22.816,18.188,14.053
+base-misc-generators-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2086.1,3893.1,3893.1,22.816,18.188,1.737
+base-misc-generators-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-generators.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-misc-ground-conductivity.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2034.0,3591.5,3591.5,21.945,18.243,0.0
+base-misc-loads-large-uncommon.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3155.8,5182.2,5182.2,21.567,20.257,0.0
+base-misc-loads-large-uncommon2.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3116.5,4853.4,4853.4,21.567,20.257,0.0
+base-misc-loads-none.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1511.0,2748.3,2748.3,23.862,16.229,0.0
+base-misc-neighbor-shading-bldgtype-multifamily.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1520.7,2307.0,2307.0,3.691,8.22,0.0
+base-misc-neighbor-shading.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2047.7,3374.4,3374.4,23.046,17.565,0.0
+base-misc-shielding-of-home.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2038.6,3536.3,3536.3,22.798,18.129,0.0
+base-misc-unit-multiplier.xml,0.0,0.0,13547.4,9980.0,111715.9,25635.4,20510.8,37790.5,37790.5,228.163,181.878,0.0
+base-misc-usage-multiplier.xml,0.0,0.0,1219.3,898.2,10054.4,2307.2,2563.0,4371.3,4371.3,22.533,18.808,0.0
+base-pv-battery-ah.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.4,3853.4,3853.4,22.816,18.188,14.053
+base-pv-battery-garage.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2084.0,2921.8,2921.8,19.147,12.352,17.132
+base-pv-battery-round-trip-efficiency.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2233.4,3988.0,3988.0,22.816,18.188,4.46
+base-pv-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2086.1,3893.1,3893.1,22.816,18.188,5.564
+base-pv-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.4,3853.4,3853.4,22.816,18.188,14.053
+base-pv-generators-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2086.1,3893.1,3893.1,22.816,18.188,16.375
+base-pv-generators-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2107.1,3842.5,3842.5,22.816,18.188,81.322
+base-pv-generators.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-pv.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-residents-0-runperiod-1-month.xml,0.0,0.0,0.0,0.0,0.0,0.0,554.09,0.0,554.09,26.1532,0.0,0.0
+base-residents-0.xml,0.0,0.0,0.0,0.0,0.0,0.0,544.7,1801.6,1801.6,24.768,14.395,0.0
+base-residents-1-misc-loads-large-uncommon.xml,0.0,0.0,777.7,496.6,4208.2,833.5,2405.6,4490.7,4490.7,22.58,18.746,0.0
+base-residents-1-misc-loads-large-uncommon2.xml,0.0,0.0,777.7,496.6,4208.2,833.5,2252.7,4231.0,4231.0,22.58,18.746,0.0
+base-residents-1.xml,0.0,0.0,777.7,496.6,4208.2,833.5,1591.3,3208.8,3208.8,23.186,17.514,0.0
+base-residents-5.xml,0.0,0.0,2592.0,2707.5,20711.7,5545.7,2761.0,3529.8,3529.8,27.048,17.164,1.816
+base-schedules-detailed-all-10-mins.xml,0.5,0.667,1354.7,998.0,11252.4,2582.1,9380.8,10992.7,10992.7,37.435,22.219,0.0
+base-schedules-detailed-mixed-timesteps-power-outage.xml,0.5,0.167,1141.2,883.5,9207.2,2112.8,9346.7,10730.9,10730.9,41.893,21.821,0.0
+base-schedules-detailed-mixed-timesteps.xml,0.0,0.167,1354.7,998.0,11253.7,2582.4,9343.2,10733.9,10733.9,32.436,21.828,0.0
+base-schedules-detailed-occupancy-stochastic-10-mins.xml,0.0,0.0,1002.6,945.2,11359.3,2606.6,6608.6,7133.5,9240.1,31.595,20.784,0.0
+base-schedules-detailed-occupancy-stochastic-power-outage.xml,17.0,0.0,1141.2,883.5,9132.4,2095.6,6179.5,5594.1,6179.5,36.593,18.761,0.0
+base-schedules-detailed-occupancy-stochastic-vacancy.xml,0.0,0.0,1141.2,883.5,9118.0,2092.3,4554.9,5600.4,5600.4,31.037,18.816,0.0
+base-schedules-detailed-occupancy-stochastic.xml,0.0,0.0,1354.7,998.0,11168.6,2562.9,4758.3,5600.6,5600.6,30.914,18.818,0.0
+base-schedules-detailed-setpoints-daily-schedules.xml,105.0,37.0,1354.7,998.0,11171.5,2563.5,2071.1,3769.9,3769.9,34.895,20.609,0.0
+base-schedules-detailed-setpoints-daily-setbacks.xml,0.0,5.0,1354.7,998.0,11171.6,2563.5,2047.5,3739.1,3739.1,25.066,21.068,0.0
+base-schedules-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2011.6,3387.9,3387.9,17.418,15.457,0.0
+base-schedules-simple-power-outage.xml,0.0,4.0,1241.4,914.9,10291.6,2416.4,2804.6,8089.0,8089.0,22.634,22.488,0.0
+base-schedules-simple-vacancy.xml,0.0,0.0,1124.6,828.5,9189.2,2157.6,2841.9,3944.7,3944.7,22.69,18.167,0.0
+base-schedules-simple.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,2804.6,3877.6,3877.6,22.632,18.137,0.0
+base-simcontrol-calendar-year-custom.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2051.1,3437.9,3437.9,22.816,18.146,0.0
+base-simcontrol-daylight-saving-custom.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+base-simcontrol-daylight-saving-disabled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3316.2,3316.2,22.816,17.804,0.0
+base-simcontrol-runperiod-1-month.xml,0.0,0.0,111.35,82.03,980.71,225.04,2015.84,0.0,2015.84,23.1969,0.0,0.0
+base-simcontrol-temperature-capacitance-multiplier.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2050.5,3760.8,3760.8,22.765,18.092,0.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,0.5,0.667,1354.7,998.0,11182.0,2565.9,8695.4,8922.2,9428.0,37.437,22.218,0.0
+base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,0.0,0.0,1354.7,998.0,11168.7,2562.9,6262.6,7168.0,7168.0,35.802,21.559,0.0
+base-simcontrol-timestep-10-mins.xml,0.0,0.0,1354.7,998.0,11171.7,2563.6,3459.1,5096.7,5096.7,23.031,18.119,0.0
+base-simcontrol-timestep-30-mins.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2064.6,3814.8,3814.8,22.955,18.123,0.0
+base.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2051.1,3779.1,3779.1,22.816,18.188,0.0
+house001.xml,0.0,0.0,2104.4,2144.8,14468.9,4385.2,1867.8,7081.8,7081.8,38.223,44.839,0.0
+house002.xml,0.0,0.0,1610.8,1575.3,9989.4,3520.4,1572.0,5643.5,5643.5,24.151,31.257,0.0
+house003.xml,0.0,0.0,1610.8,1575.3,9989.4,3520.4,1652.4,5870.0,5870.0,26.566,36.168,0.0
+house004.xml,0.0,179.0,1857.6,1860.1,12229.1,3983.9,3079.3,7937.3,7937.3,55.125,52.716,0.0
+house005.xml,0.0,4.0,1857.6,1860.1,12229.0,3983.9,2101.7,7892.4,7892.4,46.464,54.39,0.0
+house006.xml,0.0,0.0,1610.8,1575.4,12168.1,4288.2,2052.4,2911.0,2911.0,40.571,16.051,0.0
+house007.xml,0.0,0.0,1857.6,1860.1,14896.3,4852.9,2277.8,3102.0,3102.0,39.986,14.716,0.0
+house008.xml,0.0,0.0,2104.4,2144.8,17624.6,5341.6,2559.4,3976.6,3976.6,55.48,22.817,0.0
+house009.xml,0.0,0.0,1857.6,1860.1,14896.4,4852.9,2311.9,3203.0,3203.0,44.411,16.009,0.0
+house010.xml,0.0,0.0,2104.4,2144.8,17624.5,5341.6,2495.6,3442.3,3442.3,46.025,17.607,0.0
+house011.xml,0.0,397.0,0.0,1860.1,12951.3,4219.2,4928.3,3415.7,4928.3,18.667,16.381,0.0
+house012.xml,0.0,0.0,0.0,1575.3,10579.4,3728.3,2994.0,2872.0,2994.0,11.34,11.948,0.0
+house013.xml,0.0,0.0,1364.0,1290.6,8207.3,3131.8,2594.8,2350.1,2594.8,10.007,10.393,0.0
+house014.xml,0.0,0.0,1364.0,1290.6,8207.3,3131.8,2971.0,2442.6,2971.0,11.224,11.287,0.0
+house015.xml,0.0,0.0,1364.0,1290.6,8207.3,3131.8,2594.8,2350.1,2594.8,10.007,10.393,0.0
+house016.xml,2.0,11.0,1758.9,1746.2,13591.0,4566.0,7490.7,3805.5,7490.7,43.399,19.024,0.0
+house017.xml,154.0,95.0,1778.6,1769.0,13969.4,4664.0,1752.9,3646.0,3646.0,60.37,19.588,0.0
+house018.xml,0.0,0.0,1341.8,1265.0,9054.6,3477.8,4300.8,2813.2,4300.8,20.203,11.09,0.0
+house019.xml,194.0,265.0,1341.8,1265.0,7836.1,3009.8,2881.5,6510.6,6633.5,85.025,46.034,0.0
+house020.xml,0.0,0.0,1758.9,1746.2,13595.5,4567.5,2751.7,7066.1,7066.1,31.591,32.388,0.0
+house021.xml,0.0,0.0,1758.9,1746.2,13752.1,4620.1,2866.7,4993.1,4993.1,81.671,23.457,0.0
+house022.xml,186.0,120.0,1758.9,1746.2,13751.6,4620.0,3142.8,5514.7,5514.7,90.88,27.58,0.0
+house023.xml,0.0,0.0,2176.0,2227.4,7845.5,2331.5,4118.5,5044.9,5044.9,62.827,20.991,0.0
+house024.xml,0.0,0.0,2176.0,2227.4,14983.5,4452.7,2724.8,3638.7,3638.7,72.195,17.678,0.0
+house025.xml,0.0,0.0,1341.8,1265.0,3496.9,1343.1,4475.8,7250.0,7250.0,36.615,33.391,0.0
+house026.xml,0.0,0.0,1298.4,1286.8,8606.2,3033.0,1544.5,1475.8,1544.5,17.654,0.0,0.0
+house027.xml,0.0,0.0,1610.8,1575.3,10579.6,3728.4,1605.2,3756.5,3756.5,23.871,22.674,0.0
+house028.xml,0.0,0.0,1857.6,1860.1,12951.7,4219.3,1543.1,3682.8,3682.8,20.03,23.003,0.0
+house029.xml,0.0,0.0,1610.8,1575.4,11033.0,3888.2,1666.7,3340.0,3340.0,28.62,14.963,0.0
+house030.xml,0.0,0.0,1065.1,993.5,6761.6,2580.1,1161.3,1089.1,1161.3,16.168,0.0,0.0
+house031.xml,50.0,113.0,2593.1,2708.5,18308.0,4902.1,3221.8,7726.5,7847.4,125.749,49.827,0.0
+house032.xml,154.0,0.0,1341.8,1265.0,7310.3,2807.9,1429.9,901.6,1429.9,50.645,0.0,0.0
+house033.xml,0.0,0.0,924.7,0.0,3905.6,1188.1,1044.7,861.4,1044.7,48.451,0.0,0.0
+house034.xml,0.0,0.0,1758.9,1746.2,10287.0,3456.0,3011.6,2525.6,3011.6,86.69,0.0,0.0
+house035.xml,104.0,0.0,924.7,783.8,4210.1,1280.7,1396.7,2033.7,2033.7,39.497,9.871,0.0
+house036.xml,106.0,124.0,1341.8,1265.0,6447.0,2476.3,1503.0,3330.8,3330.8,32.088,17.073,0.0
+house037.xml,0.0,0.0,1341.8,1265.0,8324.2,3197.3,1464.6,1261.1,1464.6,29.92,0.0,0.0
+house038.xml,0.0,215.0,2176.0,2227.4,14642.1,4351.2,2359.9,5801.3,5801.3,48.416,27.545,0.0
+house039.xml,0.0,0.0,2176.0,2227.4,17537.6,5211.7,1705.9,1586.2,1705.9,50.362,0.0,0.0
+house040.xml,0.0,0.0,1341.8,1265.0,7310.3,2807.9,1818.3,1304.9,1818.3,62.433,0.0,0.0
+house041.xml,116.0,0.0,1857.6,1860.1,14896.4,4852.9,3254.0,5193.1,5193.1,77.826,25.933,0.0
+house042.xml,0.0,0.0,1857.6,1860.1,14896.3,4852.9,2712.1,3538.8,3538.8,88.551,19.928,0.0
+house043.xml,0.0,0.0,1610.8,1575.4,12168.1,4288.2,1956.8,3103.2,3103.2,54.831,14.428,0.0
+house044.xml,0.0,0.0,1610.8,1575.4,12168.2,4288.2,3133.0,4207.4,4207.4,81.2,20.468,0.0
+house045.xml,0.0,0.0,1610.8,1575.4,12168.2,4288.2,2334.6,3484.1,3484.1,47.113,14.547,0.0
+house046.xml,0.0,1.0,596.8,442.4,5543.5,2208.6,3909.7,2479.5,3909.7,16.387,13.763,0.0
+house047.xml,0.0,0.0,251.7,442.4,5772.6,1524.2,873.0,1000.3,1000.3,4.824,2.745,0.0
+house048.xml,0.0,0.0,130.3,818.0,11617.6,3495.1,1515.7,5651.3,5651.3,42.78,34.529,0.0
+house049.xml,0.0,225.0,728.6,567.6,7488.0,928.6,4661.1,2826.4,4661.1,13.204,15.978,0.0
+house050.xml,0.0,0.0,1688.9,437.1,10674.9,2994.2,1103.3,3098.6,3098.6,11.195,19.315,0.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv
deleted file mode 100644
index cc8a693e9a..0000000000
--- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv
+++ /dev/null
@@ -1,311 +0,0 @@
-HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)
-base-appliances-coal.xml,60.222,60.222,32.781,32.781,22.573,0.0,0.0,0.0,0.0,4.867,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,0.0,1947.6,3623.0,3623.0,22.743,18.48,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-dehumidifier-ief-portable.xml,34.727,34.727,32.963,32.963,1.764,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.818,1.843,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.467,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.608,0.0,30.77,6.557,0.574,0.0,0.0,0.0,0.0,2041.5,2988.3,2988.3,9.893,15.525,0.0,1.741,1.627,0.0,0.0,0.387,4.867,-5.12,0.0,0.0,0.0,1.248,-0.399,1.057,0.236,0.398,0.0,0.044,-4.004,-0.794,0.0,0.554,0.005,0.0,0.0,0.212,2.876,17.051,0.0,0.0,0.0,1.899,-0.394,-0.201,-2.216,-0.082,0.0,0.354,8.979,1.852,1354.7,998.0,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-appliances-dehumidifier-ief-whole-home.xml,34.736,34.736,32.987,32.987,1.75,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.814,1.842,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.494,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.579,0.0,30.724,6.557,0.574,0.0,0.0,0.0,0.0,2082.0,2988.3,2988.3,9.886,15.525,0.0,1.758,1.64,0.0,0.0,0.391,4.905,-5.164,0.0,0.0,0.0,1.264,-0.401,1.065,0.254,0.401,0.0,0.043,-4.078,-0.801,0.0,0.57,0.018,0.0,0.0,0.216,2.912,17.007,0.0,0.0,0.0,1.914,-0.396,-0.192,-2.194,-0.079,0.0,0.354,8.898,1.844,1354.7,998.0,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-appliances-dehumidifier-multiple.xml,34.71,34.71,32.903,32.903,1.806,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.807,1.84,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.421,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.649,0.0,30.727,6.557,0.574,0.0,0.0,0.0,0.0,1905.7,3007.7,3007.7,9.926,15.524,0.0,1.732,1.62,0.0,0.0,0.387,4.865,-5.106,0.0,0.0,0.0,1.223,-0.409,1.056,0.237,0.397,0.0,0.045,-3.908,-0.794,0.0,0.55,0.003,0.0,0.0,0.213,2.887,17.064,0.0,0.0,0.0,1.888,-0.404,-0.199,-2.199,-0.082,0.0,0.354,8.945,1.851,1354.7,998.0,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-appliances-dehumidifier.xml,34.683,34.683,32.931,32.931,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.808,1.84,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.447,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.596,0.0,30.7,6.557,0.574,0.0,0.0,0.0,0.0,1956.1,2988.3,2988.3,9.925,15.525,0.0,1.763,1.645,0.0,0.0,0.393,4.917,-5.187,0.0,0.0,0.0,1.262,-0.405,1.067,0.258,0.402,0.0,0.044,-4.056,-0.805,0.0,0.578,0.025,0.0,0.0,0.218,2.933,16.984,0.0,0.0,0.0,1.92,-0.399,-0.188,-2.188,-0.077,0.0,0.354,8.864,1.841,1354.7,998.0,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-appliances-freezer-temperature-dependent-schedule.xml,59.438,59.438,36.883,36.883,22.555,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.273,0.809,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,1.276,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.122,0.0,14.095,9.071,0.614,0.0,0.0,0.0,0.0,2094.4,3629.8,3629.8,22.664,18.445,0.0,3.556,3.644,0.513,7.524,0.631,10.101,-12.69,0.0,0.0,0.0,8.311,-0.066,4.935,0.0,0.728,0.0,4.479,-8.39,-2.488,0.0,-0.052,-0.453,-0.05,2.709,-0.023,-1.37,11.724,0.0,0.0,0.0,-6.301,-0.062,-1.13,-3.868,-0.163,0.0,2.83,8.469,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-appliances-gas.xml,60.222,60.222,32.781,32.781,27.441,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,0.0,1947.6,3623.0,3623.0,22.743,18.48,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-modified.xml,58.737,58.737,36.448,36.448,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.272,0.808,9.536,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.637,0.365,1.519,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.873,0.0,14.066,9.633,0.614,0.0,0.0,0.0,0.0,2076.5,3478.6,3478.6,22.73,18.304,0.0,3.556,3.643,0.513,7.525,0.631,10.107,-12.67,0.0,0.0,0.0,8.312,-0.072,5.465,0.0,0.0,0.0,4.435,-8.421,-2.487,0.0,-0.056,-0.456,-0.051,2.705,-0.023,-1.37,11.743,0.0,0.0,0.0,-6.31,-0.068,-1.273,-3.864,0.0,0.0,2.829,8.42,2.021,1354.7,1998.3,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-none.xml,53.01,53.01,28.088,28.088,24.922,0.0,0.0,0.0,0.0,0.0,0.0,0.411,0.0,0.0,3.845,0.706,7.785,0.0,0.0,4.507,0.0,0.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,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.0,12.289,7.75,0.616,0.0,0.0,0.0,0.0,1803.8,3001.1,3001.1,23.133,17.144,0.0,3.52,3.621,0.509,7.456,0.627,10.045,-12.705,0.0,0.0,0.0,8.234,-0.065,5.462,0.0,0.0,0.0,4.902,-6.091,-2.491,0.0,0.011,-0.404,-0.043,2.854,-0.01,-1.212,11.708,0.0,0.0,0.0,-6.068,-0.06,-1.225,-3.552,0.0,0.0,2.529,5.921,2.016,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-oil.xml,60.222,60.222,32.781,32.781,22.573,4.867,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,0.0,1947.6,3623.0,3623.0,22.743,18.48,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-propane.xml,60.222,60.222,32.781,32.781,22.573,0.0,4.867,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,0.0,1947.6,3623.0,3623.0,22.743,18.48,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-refrigerator-temperature-dependent-schedule.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-appliances-wood.xml,60.222,60.222,32.781,32.781,22.573,0.0,0.0,4.867,0.0,0.0,0.0,0.372,0.0,0.0,4.254,0.803,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.797,3.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,21.14,0.0,13.975,9.071,0.615,0.0,0.0,0.0,0.0,1947.6,3623.0,3623.0,22.743,18.48,0.0,3.554,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,5.092,0.0,0.486,0.0,4.485,-8.29,-2.488,0.0,-0.05,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.168,-3.844,-0.109,0.0,2.816,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-atticroof-cathedral.xml,62.195,62.195,35.473,35.473,26.722,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.113,0.771,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.005,0.0,13.25,9.071,0.616,0.0,0.0,0.0,0.0,2047.2,3387.1,3387.1,23.038,16.725,6.774,0.0,4.233,0.513,7.48,0.634,12.699,-15.652,0.0,0.0,0.0,8.32,-0.094,9.33,0.0,0.729,0.0,0.0,-7.833,-2.496,0.175,0.0,-0.482,-0.045,2.788,-0.012,-1.106,15.648,0.0,0.0,0.0,-6.288,-0.069,-2.029,-4.694,-0.154,0.0,0.0,7.745,2.012,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30447.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,2408.0,0.0,7063.0,15723.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,948.0,3320.0,0.0,0.0,0.0,0.0
-base-atticroof-conditioned.xml,64.292,64.292,40.383,40.383,23.91,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.876,0.953,8.919,0.0,0.0,5.748,0.0,0.398,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,11.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.375,0.0,16.44,9.019,0.614,0.0,0.0,0.0,0.0,2290.8,3880.0,3880.0,22.957,20.649,4.565,1.167,5.562,0.519,7.664,0.637,14.496,-17.102,0.0,0.0,0.0,8.521,-0.089,7.153,0.0,0.731,0.0,0.288,-8.985,-3.17,0.007,0.021,-0.563,-0.053,2.687,-0.028,-1.671,18.202,0.0,0.0,0.0,-6.373,-0.083,-1.663,-5.274,-0.165,0.0,0.096,8.989,2.578,1354.7,998.0,11171.5,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32083.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,2408.0,724.0,6718.0,19378.0,62.0,12260.0,0.0,207.0,1211.0,650.0,0.0,0.0,764.0,904.0,3320.0,0.0,0.0,0.0,0.0
-base-atticroof-flat.xml,55.31,55.31,34.765,34.765,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,3.617,0.659,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.226,0.0,11.319,9.071,0.616,0.0,0.0,0.0,0.0,2029.7,3207.2,3207.2,17.971,12.997,6.035,0.0,3.612,0.508,7.441,0.624,10.017,-12.688,0.0,0.0,0.0,8.192,-0.08,4.799,0.0,0.726,0.0,0.0,-7.799,-2.489,0.324,0.0,-0.434,-0.048,2.771,-0.018,-1.311,11.72,0.0,0.0,0.0,-6.201,-0.055,-1.126,-3.734,-0.16,0.0,0.0,7.781,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25336.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,2408.0,0.0,4699.0,12331.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-atticroof-radiant-barrier-ceiling.xml,38.67,38.67,33.45,33.45,5.22,0.0,0.0,0.0,0.0,0.0,0.0,0.023,0.0,0.0,9.615,2.003,6.712,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.181,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.82,0.0,33.352,6.557,0.582,0.0,0.0,0.0,0.0,1758.3,3538.7,3538.7,14.608,20.521,0.0,7.07,1.549,0.0,0.0,0.334,4.333,-6.058,0.0,0.0,0.0,0.631,-0.423,1.025,0.0,0.401,0.0,0.129,-3.502,-0.871,0.0,3.82,0.175,0.0,0.0,0.218,3.049,16.138,0.0,0.0,0.0,2.051,-0.414,-0.088,-1.995,-0.036,0.0,0.39,8.571,1.775,1354.7,998.0,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25771.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,24753.0,63.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,12169.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-atticroof-radiant-barrier.xml,37.48,37.48,32.998,32.998,4.482,0.0,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.0,9.243,1.924,6.711,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.185,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,32.022,6.557,0.581,0.0,0.0,0.0,0.0,1746.9,3409.8,3409.8,13.721,19.306,0.0,5.95,1.569,0.0,0.0,0.333,4.335,-5.943,0.0,0.0,0.0,0.809,-0.367,1.016,0.0,0.396,0.0,0.111,-3.438,-0.855,0.0,2.401,0.164,0.0,0.0,0.21,2.973,16.228,0.0,0.0,0.0,2.136,-0.359,-0.124,-2.068,-0.046,0.0,0.375,8.638,1.791,1354.7,998.0,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25771.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,21651.0,65.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,9065.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-atticroof-unvented-insulated-roof.xml,58.382,58.382,34.944,34.944,23.438,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,3.728,0.68,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.935,0.0,11.649,9.071,0.616,0.0,0.0,0.0,0.0,2048.7,3333.7,3333.7,20.24,14.556,0.0,5.682,3.62,0.509,7.455,0.626,10.045,-12.698,0.0,0.0,0.0,8.249,-0.07,4.934,0.0,0.728,0.0,2.837,-7.81,-2.491,0.0,-1.395,-0.4,-0.043,2.868,-0.009,-1.202,11.715,0.0,0.0,0.0,-6.03,-0.061,-1.084,-3.517,-0.157,0.0,1.39,7.768,2.016,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31048.0,4828.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,4190.0,4699.0,19534.0,1877.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-atticroof-vented.xml,59.155,59.155,35.289,35.289,23.865,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,3.86,0.712,9.189,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.348,0.0,12.301,9.071,0.803,0.0,0.0,0.0,0.0,2055.6,3407.5,3407.5,22.776,16.134,0.0,3.887,3.633,0.511,7.49,0.629,10.077,-12.698,0.0,0.0,0.0,8.276,-0.066,5.148,0.0,0.727,0.0,4.381,-7.473,-2.49,0.0,-0.508,-0.424,-0.046,2.791,-0.015,-1.275,11.715,0.0,0.0,0.0,-6.17,-0.062,-1.086,-3.673,-0.16,0.0,1.91,7.491,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16544.0,3822.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-battery-scheduled.xml,60.439,60.439,37.212,37.212,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2086.1,3893.1,3893.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.326,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-battery.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,37.028,37.028,24.04,24.04,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.095,0.0,0.0,1.534,0.185,9.672,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,2.898,9.37,0.731,0.0,0.0,0.0,0.0,1496.3,1906.1,1906.1,8.305,6.269,0.0,2.942,3.648,0.0,0.0,0.585,1.314,-1.599,0.0,0.0,2.977,0.0,-0.048,1.674,0.0,0.0,0.0,5.215,-3.529,-1.183,0.0,-0.891,-0.193,0.0,0.0,-0.044,-0.088,1.303,0.0,0.0,-0.905,0.0,-0.045,-0.267,-0.401,0.0,0.0,0.548,3.087,0.842,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12374.0,5661.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,22.488,22.488,22.488,22.488,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.565,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.62,0.0,0.0,0.0,0.0,1459.3,1409.8,1459.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,1354.7,998.0,11171.5,3093.4,0.0,0.0,0.0,0.0,6.8,91.76,7340.0,0.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,8393.0,0.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-adjacent-to-multiple.xml,32.364,32.364,24.943,24.943,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.054,0.0,0.0,2.077,0.304,9.557,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.083,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.884,0.0,5.047,9.37,0.612,0.0,0.0,0.0,0.0,1513.4,2227.0,2227.0,10.066,11.013,0.0,-0.005,3.291,0.0,0.0,1.39,3.735,-4.234,0.0,0.0,4.543,0.0,-0.086,1.252,0.0,0.791,0.0,2.747,-5.509,-1.139,0.0,-0.001,-0.416,0.0,0.0,-0.396,-0.133,3.971,0.0,0.0,-2.921,0.0,-0.081,-0.23,-1.203,-0.123,0.0,0.499,5.302,0.886,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12354.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,9965.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,50.251,50.251,23.789,23.789,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,1.417,0.158,9.755,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.399,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.537,0.0,2.432,9.37,0.818,0.0,0.0,0.0,0.0,1491.9,2170.3,2170.3,11.815,8.826,0.0,5.38,4.202,0.0,0.0,0.793,1.293,-1.715,0.0,0.0,5.429,0.0,-0.077,1.706,0.0,0.0,0.0,12.476,-3.737,-1.243,0.0,-1.132,-0.025,0.0,0.0,-0.042,0.011,1.187,0.0,0.0,-1.14,0.0,-0.073,-0.178,-0.296,0.0,0.0,0.531,2.88,0.782,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14621.0,6781.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1558.0,10083.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,26.114,26.114,24.211,24.211,1.904,0.0,0.0,0.0,0.0,0.0,0.0,0.014,0.0,0.0,1.558,0.191,9.582,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.763,0.0,3.001,9.37,0.637,0.0,0.0,0.0,0.0,1508.3,1950.2,1950.2,3.926,6.271,0.0,0.284,3.112,0.0,0.0,0.366,1.367,-1.509,0.0,0.0,0.305,0.0,-0.01,1.681,0.0,0.0,0.0,0.543,-3.319,-1.118,0.0,-0.795,-0.417,0.0,0.0,-0.066,-0.199,1.393,0.0,0.0,-0.811,0.0,-0.007,-0.374,-0.454,0.0,0.0,0.567,3.297,0.907,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8360.0,3676.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.466,26.466,24.825,24.825,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.012,0.0,0.0,1.971,0.292,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.144,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.519,0.0,4.744,9.37,0.593,0.0,0.0,0.0,0.0,1514.5,1818.7,1818.7,4.235,4.793,0.0,-0.003,3.149,0.0,0.0,0.363,1.418,-1.433,0.0,0.0,-0.003,0.0,-0.057,1.741,0.0,0.0,0.0,0.472,-3.109,-1.046,0.0,-0.002,-0.488,0.0,0.0,-0.03,-0.32,1.47,0.0,0.0,-0.002,0.0,-0.055,-0.481,-0.645,0.0,0.0,0.844,3.508,0.98,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7916.0,3457.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1558.0,6281.0,1327.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.717,26.717,25.953,25.953,0.764,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.855,0.509,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.19,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.666,9.37,0.579,0.0,0.0,0.0,0.0,1612.1,2253.4,2253.4,3.618,7.758,0.0,-0.017,2.482,0.0,0.0,0.423,3.949,-2.673,0.0,0.0,-0.013,0.0,-0.407,0.996,0.0,0.687,0.0,0.0,-4.026,-0.783,0.0,-0.012,-1.037,0.0,0.0,-0.034,-1.032,5.529,0.0,0.0,-0.008,0.0,-0.398,-0.37,-1.611,-0.368,0.0,0.0,6.859,1.242,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5615.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1261.0,7014.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,169.0,3320.0,621.0,0.0,-179.0,800.0
-base-bldgtype-mf-unit-residents-1.xml,19.916,19.916,18.508,18.508,1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.394,0.394,4.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.165,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.506,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,0.0,6.943,4.142,0.587,0.0,0.0,0.0,0.0,1088.9,1700.7,1700.7,4.017,7.292,0.0,-0.017,2.596,0.0,0.0,0.419,4.07,-3.113,0.0,0.0,-0.015,0.0,-0.341,1.298,0.0,0.746,0.0,0.0,-3.471,-0.93,0.0,-0.012,-0.775,0.0,0.0,-0.01,-0.682,5.089,0.0,0.0,-0.011,0.0,-0.333,-0.387,-1.448,-0.271,0.0,0.0,4.755,1.095,817.1,530.8,4684.1,1314.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.381,27.381,26.459,26.459,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,3.079,0.755,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,2.0,1632.6,2107.2,2107.2,3.816,7.196,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213,1354.7,998.0,11171.6,3093.4,0.0,5911.0,8179.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.147,28.147,27.161,27.161,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.646,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.883,0.0,9.663,9.37,0.58,0.0,0.0,0.0,6.0,1660.6,2298.4,2298.4,3.978,8.314,0.0,-0.016,2.514,0.0,0.0,0.42,3.966,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.285,0.0,0.699,0.0,0.049,-4.127,-0.81,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.979,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.472,-1.602,-0.349,0.0,1.171,6.755,1.216,1354.7,998.0,11171.6,3093.4,0.0,8673.0,9205.0,0.0,6.8,91.76,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.617,27.617,26.743,26.743,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.105,0.0,0.0,3.303,0.755,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,2.0,1643.1,2161.2,2161.2,3.814,7.196,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213,1354.7,998.0,11171.6,3093.4,0.0,5911.0,8179.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.439,31.439,30.72,30.72,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,7.193,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.851,0.0,9.663,9.37,0.58,0.0,0.0,0.0,6.0,1823.5,3293.8,3293.8,3.904,8.314,0.0,-0.016,2.514,0.0,0.0,0.42,3.964,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.283,0.0,0.699,0.0,0.019,-4.125,-0.809,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.98,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.472,-1.602,-0.35,0.0,1.171,6.757,1.216,1354.7,998.0,11171.6,3093.4,0.0,28568.0,9205.0,0.0,6.8,91.76,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.735,27.735,27.017,27.017,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,3.49,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.851,0.0,9.663,9.37,0.58,0.0,0.0,0.0,6.0,1653.7,2259.1,2259.1,3.904,8.314,0.0,-0.016,2.514,0.0,0.0,0.42,3.964,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.283,0.0,0.699,0.0,0.019,-4.125,-0.809,0.0,-0.012,-0.983,0.0,0.0,-0.032,-0.98,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.472,-1.602,-0.35,0.0,1.171,6.757,1.216,1354.7,998.0,11171.6,3093.4,0.0,28568.0,9205.0,0.0,6.8,91.76,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.606,23.606,22.809,22.809,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1474.9,1412.1,1474.9,3.808,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,5911.0,0.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.691,23.691,22.838,22.838,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.763,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1487.0,1412.1,1487.0,3.976,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.642,0.0,0.957,0.0,0.043,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,8673.0,0.0,0.0,6.8,91.76,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.617,23.617,22.858,22.858,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.088,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1500.4,1412.1,1500.4,3.812,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,5911.0,0.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.595,23.595,23.024,23.024,0.572,0.0,0.0,0.0,0.0,0.0,0.179,0.075,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1613.4,1412.1,1613.4,3.812,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,7083.0,0.0,0.0,6.8,91.76,7083.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,2729.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.617,23.617,22.861,22.861,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1502.6,1412.1,1502.6,3.812,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,5911.0,0.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,23.47,23.47,22.849,22.849,0.621,0.0,0.0,0.0,0.0,0.0,0.04,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.736,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1492.9,1412.1,1492.9,3.902,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.017,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,28568.0,0.0,0.0,6.8,91.76,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.353,26.353,26.353,26.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.056,0.746,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.37,0.593,0.0,0.0,0.0,2.0,1617.6,2202.3,2202.3,0.0,7.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19,1354.7,998.0,11171.5,3093.4,0.0,0.0,8179.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.016,27.016,27.016,27.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.619,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.37,0.593,0.0,0.0,0.0,6.0,1642.4,2274.6,2274.6,0.0,8.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193,1354.7,998.0,11171.5,3093.4,0.0,0.0,9205.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.575,26.575,26.575,26.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.277,0.746,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.37,0.593,0.0,0.0,0.0,2.0,1627.0,2269.8,2269.8,0.0,7.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19,1354.7,998.0,11171.5,3093.4,0.0,0.0,8179.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,30.529,30.529,30.529,30.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.37,0.593,0.0,0.0,0.0,6.0,1787.3,3209.8,3209.8,0.0,8.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193,1354.7,998.0,11171.5,3093.4,0.0,0.0,9205.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,26.861,26.861,26.861,26.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.464,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.37,0.593,0.0,0.0,0.0,6.0,1636.0,2235.8,2235.8,0.0,8.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.934,0.0,0.0,-0.037,-0.975,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.464,-1.596,-0.337,0.0,1.163,6.674,1.193,1354.7,998.0,11171.5,3093.4,0.0,0.0,9205.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-generator.xml,40.963,34.139,25.897,19.073,0.899,0.0,14.167,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.333,28.333,28.333,28.333,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.382,0.0,0.0,2.266,2.864,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1705.4,2025.2,2025.2,3.814,7.788,0.0,-0.016,2.518,0.0,0.0,0.421,3.978,-2.778,0.0,0.0,-0.013,0.0,-0.388,1.286,0.0,0.702,0.0,0.0,-4.146,-0.814,0.0,-0.012,-0.978,0.0,0.0,-0.031,-0.966,5.424,0.0,0.0,-0.009,0.0,-0.379,-0.461,-1.595,-0.347,0.0,0.0,6.736,1.211,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,12000.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.684,31.684,16.434,16.434,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.861,0.511,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.825,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,0.0,928.0,1598.0,1598.0,3.861,7.816,0.0,-0.018,2.47,0.0,0.0,0.422,3.947,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.05,0.0,0.0,0.0,0.0,-4.279,-0.789,0.0,-0.013,-1.037,0.0,0.0,-0.032,-1.015,5.52,0.0,0.0,-0.01,0.0,-0.409,-0.844,-1.625,0.0,0.0,0.0,7.1,1.236,1354.7,998.0,11171.9,3093.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-laundry-room.xml,29.601,29.601,16.252,16.252,13.349,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.723,0.475,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.039,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,0.0,919.2,1586.4,1586.4,4.011,7.695,0.0,-0.017,2.526,0.0,0.0,0.42,3.983,-2.859,0.0,0.0,-0.014,0.0,-0.392,2.071,0.0,0.0,0.0,0.0,-3.984,-0.834,0.0,-0.012,-0.938,0.0,0.0,-0.026,-0.911,5.343,0.0,0.0,-0.01,0.0,-0.383,-0.783,-1.56,0.0,0.0,0.0,6.286,1.191,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.421,51.421,30.435,30.435,20.986,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,2.762,0.295,9.563,0.0,0.0,2.025,0.0,0.206,3.706,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.821,0.0,0.0,0.0,0.0,12.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.173,0.0,4.99,9.37,0.617,0.0,0.0,0.0,0.0,1802.8,2328.3,2328.3,7.899,9.054,0.0,-0.018,2.765,0.0,0.0,0.405,4.177,-4.251,0.0,0.0,-0.022,0.0,-0.279,0.208,0.0,12.311,0.0,0.0,-5.846,-1.19,0.0,-0.014,-0.127,0.0,0.0,0.065,0.169,3.951,0.0,0.0,-0.019,0.0,-0.274,-0.015,-0.708,-4.0,0.0,0.0,4.951,0.835,1354.7,998.0,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,9336.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4983.0,8045.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1201.0,3320.0,0.0,0.0,0.0,0.0
-base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.56,32.56,27.1,27.1,5.46,0.0,0.0,0.0,0.0,0.0,0.0,0.011,0.0,0.0,2.562,0.428,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.504,0.0,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,0.0,1593.9,2159.1,2159.1,4.194,7.952,0.0,-0.017,2.644,0.0,0.0,0.425,4.131,-3.171,0.0,0.0,-0.016,0.0,-0.35,1.419,0.0,1.913,0.0,0.0,-4.671,-0.942,0.0,-0.013,-0.712,0.0,0.0,-0.0,-0.592,5.031,0.0,0.0,-0.012,0.0,-0.342,-0.386,-1.324,-1.707,0.0,0.0,6.19,1.083,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6306.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1953.0,7113.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,268.0,3320.0,2.0,0.0,-798.0,800.0
-base-bldgtype-mf-unit-shared-mechvent.xml,30.909,30.909,26.944,26.944,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.479,0.405,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,0.0,1564.2,2140.7,2140.7,6.015,8.573,0.0,-0.015,2.674,0.0,0.0,0.393,4.003,-3.667,0.0,0.0,-0.016,0.0,-0.244,1.391,0.0,5.29,0.0,0.0,-5.058,-1.039,0.0,-0.011,-0.528,0.0,0.0,-0.004,-0.476,4.535,0.0,0.0,-0.013,0.0,-0.238,-0.311,-1.324,-1.453,0.0,0.0,5.781,0.986,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7909.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3556.0,7599.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,754.0,3320.0,2.0,0.0,-798.0,800.0
-base-bldgtype-mf-unit-shared-pv-battery.xml,27.673,3.225,26.774,2.326,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1649.1,2045.5,2045.5,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,44.391,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-pv.xml,26.796,2.349,25.897,1.449,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,21.091,21.091,18.322,18.322,2.769,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.0,2.083,0.316,2.919,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.117,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,5.416,9.441,0.282,0.0,0.0,0.0,0.0,1287.4,1883.9,1883.9,5.887,7.73,0.0,-0.015,2.661,0.0,0.0,0.375,3.882,-3.842,0.0,0.0,-0.016,0.0,-0.229,1.255,0.0,0.763,0.0,0.0,-1.537,-1.027,0.0,-0.012,-0.485,0.0,0.0,-0.013,-0.521,4.36,0.0,0.0,-0.013,0.0,-0.223,-0.312,-1.203,-0.195,0.0,0.0,3.22,0.998,1354.7,998.0,10607.3,2937.1,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,21.217,21.217,15.344,15.344,5.874,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.282,0.367,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.154,0.0,0.0,0.146,0.197,0.817,1.129,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.775,0.0,4.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,6.509,2.731,0.581,0.0,0.0,0.0,0.0,818.9,1475.4,1475.4,4.341,7.252,0.0,-0.018,2.628,0.0,0.0,0.416,4.089,-3.278,0.0,0.0,-0.018,0.0,-0.321,1.63,0.0,0.759,0.0,0.0,-3.308,-0.974,0.0,-0.013,-0.694,0.0,0.0,-0.004,-0.586,4.924,0.0,0.0,-0.013,0.0,-0.314,-0.461,-1.388,-0.242,0.0,0.0,4.298,1.051,732.1,456.9,3657.4,0.0,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,6364.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,2630.0,0.0,0.0,0.0,0.0
-base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit-shared-water-heater.xml,29.68,29.68,16.273,16.273,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,913.0,1595.2,1595.2,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-unit.xml,26.796,26.796,25.897,25.897,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-bldgtype-mf-whole-building.xml,217.516,217.516,217.516,217.516,0.0,0.0,0.0,0.0,0.0,0.0,34.288,0.0,0.0,0.0,22.669,0.0,55.567,0.0,0.0,14.641,0.0,1.364,0.0,0.0,0.0,0.0,12.716,0.0,0.0,1.912,2.192,0.0,9.172,0.0,12.693,50.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.234,0.0,50.758,55.316,3.606,0.0,0.0,0.0,1.0,22122.0,16427.5,22122.0,53.957,57.134,0.0,7.768,18.937,0.0,0.0,2.279,27.645,-27.459,0.0,0.0,7.747,0.0,-1.267,56.52,0.0,0.0,0.0,0.0,-50.237,-7.691,0.0,-1.08,-3.267,0.0,0.0,-0.061,-3.866,29.904,0.0,0.0,-3.845,0.0,-1.242,-13.477,-10.141,0.0,0.0,0.0,51.001,6.95,8128.5,5988.0,67057.1,16864.7,0.0,72000.0,72000.0,0.0,6.8,91.76,88106.0,0.0,18018.0,0.0,1722.0,10488.0,0.0,2376.0,0.0,3860.0,51642.0,53028.0,0.0,21576.0,0.0,618.0,1104.0,0.0,630.0,0.0,2244.0,6930.0,19920.0,0.0,0.0,0.0,0.0
-base-bldgtype-sfa-unit-2stories.xml,51.679,51.679,34.255,34.255,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,3.248,0.567,9.076,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.249,0.0,9.759,9.106,0.615,0.0,0.0,0.0,0.0,2027.7,3147.3,3147.3,17.84,15.285,0.0,2.428,5.061,0.297,4.364,0.638,7.116,-8.588,0.0,0.0,0.0,5.002,-0.071,7.137,0.0,0.729,0.0,2.184,-7.794,-2.489,0.0,0.011,-0.629,-0.025,1.636,-0.014,-1.001,7.908,0.0,0.0,0.0,-3.947,-0.066,-1.646,-3.206,-0.159,0.0,1.194,7.788,2.018,1354.7,998.0,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,28224.0,7460.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1879.0,1447.0,6082.0,17772.0,5036.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1529.0,819.0,3320.0,0.0,0.0,0.0,0.0
-base-bldgtype-sfa-unit-atticroof-cathedral.xml,98.436,98.436,36.921,36.921,61.515,0.0,0.0,0.0,0.0,0.0,0.0,0.802,0.0,0.0,4.989,0.937,9.084,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.361,0.0,15.982,9.106,0.623,0.0,0.0,0.0,0.0,2100.0,4529.8,4529.8,36.753,28.623,49.493,0.0,2.937,0.289,3.687,0.667,4.711,-5.326,0.0,0.0,0.0,3.418,-0.85,7.541,0.0,0.772,0.0,0.0,-8.484,-2.669,8.563,0.0,-0.155,0.004,1.537,0.121,0.039,5.084,0.0,0.0,0.0,-4.273,-0.813,-0.842,-1.316,-0.093,0.0,0.0,7.077,1.838,1354.7,998.0,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43862.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1879.0,0.0,6082.0,24069.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,819.0,3320.0,0.0,0.0,0.0,0.0
-base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,43.006,43.006,29.52,29.52,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,2.655,0.44,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,0.0,7.559,9.221,0.615,0.0,0.0,0.0,0.0,1759.3,2653.1,2653.1,13.219,10.326,0.0,2.337,2.366,0.292,4.232,0.624,3.565,-4.314,0.0,0.0,0.0,4.671,-0.046,3.13,0.0,0.726,0.0,3.182,-6.594,-1.805,0.0,0.03,-0.275,-0.026,1.588,-0.018,-0.584,3.96,0.0,0.0,0.0,-4.039,-0.044,-0.748,-1.557,-0.163,0.0,1.448,6.599,1.461,1354.7,998.0,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21856.0,8165.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14857.0,5947.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,419.0,3320.0,356.0,0.0,-444.0,800.0
-base-bldgtype-sfa-unit.xml,43.006,43.006,29.52,29.52,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,2.655,0.44,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,0.0,7.559,9.221,0.615,0.0,0.0,0.0,0.0,1759.3,2653.1,2653.1,13.219,10.326,0.0,2.337,2.366,0.292,4.232,0.624,3.565,-4.314,0.0,0.0,0.0,4.671,-0.046,3.13,0.0,0.726,0.0,3.182,-6.594,-1.805,0.0,0.03,-0.275,-0.026,1.588,-0.018,-0.584,3.96,0.0,0.0,0.0,-4.039,-0.044,-0.748,-1.557,-0.163,0.0,1.448,6.599,1.461,1354.7,998.0,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21857.0,8165.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14857.0,5947.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,420.0,3320.0,356.0,0.0,-444.0,800.0
-base-dhw-combi-tankless-outside.xml,52.189,52.189,21.369,21.369,30.82,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.356,0.0,0.0,9.173,0.0,0.0,0.0,0.0,0.0,1295.6,1163.0,1295.6,16.826,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.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,1070.0,776.6,8411.2,1930.1,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-combi-tankless.xml,53.386,53.386,21.376,21.376,32.011,0.0,0.0,0.0,0.0,0.0,0.0,0.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.722,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.411,0.0,0.0,9.173,0.0,0.0,0.0,0.0,0.0,1297.1,1163.0,1297.1,17.407,0.0,0.0,3.736,3.635,0.512,7.475,0.63,10.086,-12.693,0.0,0.0,0.0,8.135,-0.071,5.887,0.0,0.727,0.0,0.0,-7.472,-2.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,1070.0,776.6,8411.2,1930.1,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater-2-speed.xml,31.609,31.609,31.609,31.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.111,0.697,6.833,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,9.07,0.666,2.807,0.0,0.0,0.0,1972.5,2856.0,2856.0,0.0,18.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.072,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.135,-3.692,-0.162,0.0,3.241,8.497,2.042,1354.7,998.0,11183.2,2566.2,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater-gshp.xml,38.101,38.101,38.101,38.101,0.0,0.0,0.0,0.0,0.0,0.0,5.809,0.592,0.0,0.0,2.996,0.975,6.591,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.948,0.0,13.383,9.069,0.614,2.864,0.0,0.0,0.0,3399.5,2493.1,3399.5,22.039,16.279,0.0,3.583,3.636,0.512,7.501,0.629,10.08,-12.691,0.0,0.0,0.0,8.283,-0.065,4.905,0.0,0.727,0.0,3.498,-7.483,-2.489,0.0,0.004,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.238,-0.062,-1.126,-3.813,-0.161,0.0,1.915,8.388,2.018,1354.7,998.0,11187.2,2567.1,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater-hpwh.xml,56.998,56.998,29.359,29.359,27.639,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,4.264,0.807,2.702,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.884,0.0,14.073,9.081,1.811,2.917,0.0,0.0,0.0,1813.0,3190.8,3190.8,23.231,18.741,0.0,3.516,3.632,0.511,7.485,0.627,10.06,-12.745,0.0,0.0,0.0,8.31,-0.057,4.958,0.0,0.726,0.0,5.354,-4.328,-2.497,0.0,0.002,-0.394,-0.042,2.895,-0.009,-1.192,11.668,0.0,0.0,0.0,-6.008,-0.053,-1.067,-3.563,-0.152,0.0,2.81,7.472,2.01,1354.6,997.9,11147.9,2558.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater-tankless.xml,33.152,33.152,33.152,33.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,1.116,6.818,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,9.076,0.0,2.839,0.0,0.0,0.0,1833.3,3296.7,3296.7,0.0,18.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.047,-0.437,-0.047,2.752,-0.023,-1.348,11.85,0.0,0.0,0.0,-6.846,-0.067,-1.133,-3.653,-0.161,0.0,2.829,8.227,2.042,1354.7,998.0,11133.8,2554.9,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater-var-speed.xml,30.774,30.774,30.774,30.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.719,0.271,6.816,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.183,9.07,0.666,2.832,0.0,0.0,0.0,1972.5,2657.1,2657.1,0.0,18.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.443,-0.048,2.737,-0.025,-1.364,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.139,-3.697,-0.162,0.0,4.145,8.504,2.042,1354.7,998.0,11183.8,2566.3,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-desuperheater.xml,33.184,33.184,33.184,33.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.304,1.133,6.779,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.969,9.07,0.666,2.888,0.0,0.0,0.0,1971.5,3308.4,3308.4,0.0,18.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.055,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.14,-3.694,-0.162,0.0,2.863,8.52,2.042,1354.7,998.0,11184.0,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-dwhr.xml,56.433,56.433,33.206,33.206,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.753,0.0,13.611,6.631,0.615,0.0,0.0,0.0,0.0,2000.7,3435.7,3435.7,22.814,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,0.0,1296.3,1163.4,1296.3,17.02,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.3,855.1,9363.6,2148.7,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect-dse.xml,60.222,60.222,21.41,21.41,38.812,0.0,0.0,0.0,0.0,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.408,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,0.0,1296.3,1163.3,1296.3,17.117,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.7,771.0,8867.4,2034.8,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect-outside.xml,56.51,56.51,21.369,21.369,35.141,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.356,0.0,0.0,9.101,3.299,0.0,0.0,0.0,0.0,1295.6,1163.0,1295.6,16.826,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.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,1066.2,768.7,8830.9,2026.4,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect-standbyloss.xml,55.344,55.344,21.371,21.371,33.974,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.153,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.068,0.0,13.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.973,0.0,0.0,9.1,2.704,0.0,0.0,0.0,0.0,1296.1,1163.4,1296.1,17.043,0.0,0.0,3.739,3.639,0.512,7.49,0.63,10.097,-12.676,0.0,0.0,0.0,8.128,-0.072,5.894,0.0,0.728,0.0,0.0,-8.988,-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,0.0,0.0,0.0,0.0,0.0,1060.2,765.1,8818.5,2023.6,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect-with-solar-fraction.xml,47.29,47.29,21.374,21.374,25.916,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,0.0,9.076,0.787,0.0,5.9,0.0,0.0,1296.8,1163.1,1296.8,17.31,0.0,0.0,3.737,3.636,0.512,7.479,0.63,10.092,-12.691,0.0,0.0,0.0,8.134,-0.073,5.89,0.0,0.727,0.0,0.0,-7.917,-2.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,390.1,285.6,3158.3,724.7,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-indirect.xml,55.102,55.102,21.372,21.372,33.73,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.327,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,0.0,1296.3,1163.3,1296.3,17.117,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.7,771.0,8867.4,2034.8,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-jacket-electric.xml,58.595,58.595,35.152,35.152,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.136,0.775,8.716,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.954,0.0,13.504,9.071,0.296,0.0,0.0,0.0,0.0,2041.2,3435.6,3435.6,22.868,18.138,0.0,3.543,3.637,0.512,7.504,0.629,10.084,-12.691,0.0,0.0,0.0,8.288,-0.066,4.937,0.0,0.728,0.0,4.639,-7.626,-2.489,0.0,-0.033,-0.438,-0.048,2.756,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.23,-0.062,-1.116,-3.759,-0.161,0.0,2.737,7.636,2.018,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-jacket-gas.xml,64.578,64.578,26.562,26.562,38.016,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.233,0.798,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.817,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,0.0,13.905,9.071,2.729,0.0,0.0,0.0,0.0,1390.5,3168.0,3168.0,23.334,18.556,0.0,3.54,3.637,0.512,7.507,0.63,10.086,-12.69,0.0,0.0,0.0,8.293,-0.066,6.007,0.0,0.727,0.0,4.713,-8.434,-2.488,0.0,-0.04,-0.442,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.062,-1.393,-3.788,-0.162,0.0,2.809,8.313,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-jacket-hpwh.xml,56.923,56.923,29.251,29.251,27.672,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.724,0.678,3.263,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.063,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.915,0.0,11.845,9.122,1.311,0.0,0.0,0.0,0.0,1807.1,3105.1,3105.1,24.898,18.046,0.0,3.513,3.631,0.511,7.486,0.626,10.051,-12.749,0.0,0.0,0.0,8.316,-0.051,4.956,0.0,0.726,0.0,5.355,-4.296,-2.497,0.0,0.027,-0.387,-0.041,2.918,-0.008,-1.179,11.664,0.0,0.0,0.0,-5.97,-0.047,-1.063,-3.396,-0.15,0.0,2.455,5.337,2.01,1354.7,998.0,10786.2,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-jacket-indirect.xml,54.898,54.898,21.372,21.372,33.526,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.15,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,12.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.387,0.0,0.0,9.097,1.921,0.0,0.0,0.0,0.0,1296.4,1163.3,1296.4,17.165,0.0,0.0,3.74,3.639,0.512,7.487,0.63,10.092,-12.69,0.0,0.0,0.0,8.133,-0.069,5.892,0.0,0.728,0.0,0.0,-8.551,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.4,776.5,8919.9,2046.8,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-low-flow-fixtures.xml,58.484,58.484,35.257,35.257,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.793,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,8.834,0.615,0.0,0.0,0.0,0.0,2049.5,3580.7,3580.7,22.815,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-multiple.xml,47.969,47.969,23.301,23.301,24.669,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,1.928,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.743,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,0.0,9.062,2.83,0.0,5.89,0.0,0.0,2066.1,1773.3,2066.1,17.068,0.0,0.0,3.737,3.637,0.512,7.485,0.63,10.096,-12.685,0.0,0.0,0.0,8.137,-0.073,5.892,0.0,0.728,0.0,0.0,-8.376,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,347.7,3918.9,899.3,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-none.xml,47.774,47.774,24.165,24.165,23.609,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.074,0.761,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.0,0.0,0.0,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,13.252,0.0,0.0,0.0,0.0,0.0,0.0,1287.4,2993.7,2993.7,22.914,17.862,0.0,3.539,3.634,0.511,7.497,0.629,10.078,-12.691,0.0,0.0,0.0,8.279,-0.066,5.462,0.0,0.0,0.0,4.669,-7.266,-2.489,0.0,-0.026,-0.434,-0.048,2.77,-0.018,-1.306,11.723,0.0,0.0,0.0,-6.208,-0.062,-1.251,-3.724,0.0,0.0,2.69,7.301,2.018,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-demand-scheduled.xml,58.656,58.656,35.428,35.428,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,0.0,2042.6,3442.1,3442.1,22.815,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-demand.xml,58.656,58.656,35.428,35.428,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,0.0,2042.6,3442.1,3442.1,22.815,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-manual.xml,58.236,58.236,35.008,35.008,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,8.528,0.017,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.013,0.615,0.0,0.0,0.0,0.0,2027.4,3427.5,3427.5,22.815,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-nocontrol.xml,73.385,73.385,50.157,50.157,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,0.0,2975.8,4092.6,4092.6,22.814,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-temperature.xml,68.534,68.534,45.307,45.307,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,18.594,0.249,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,0.0,2673.5,3922.7,3922.7,22.814,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-recirc-timer.xml,73.385,73.385,50.157,50.157,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.105,0.615,0.0,0.0,0.0,0.0,2975.8,4092.6,4092.6,22.814,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-direct-evacuated-tube.xml,52.893,52.893,29.666,29.666,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.164,0.782,2.875,0.0,0.324,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.625,9.094,0.629,0.0,6.634,0.0,0.0,2007.2,3161.3,3161.3,22.815,18.201,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.756,7.796,2.018,1354.6,997.9,10983.6,2520.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-direct-flat-plate.xml,51.454,51.454,28.236,28.236,23.218,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.176,0.785,1.444,0.0,0.311,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.744,0.0,13.674,9.208,0.696,0.0,8.354,0.0,0.0,2010.4,3132.4,3132.4,22.817,18.23,0.0,3.544,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.936,0.0,0.728,0.0,4.599,-7.804,-2.488,0.0,-0.037,-0.441,-0.049,2.746,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.121,-3.788,-0.162,0.0,2.764,7.858,2.019,1354.3,997.6,10193.3,2339.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-direct-ics.xml,52.967,52.967,29.739,29.739,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.169,0.783,2.938,0.0,0.327,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.753,0.0,13.647,9.131,0.65,0.0,6.625,0.0,0.0,2045.5,3163.4,3163.4,22.816,18.22,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.119,-3.782,-0.162,0.0,2.76,7.817,2.018,1354.7,997.9,10725.6,2461.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-fraction.xml,53.081,53.081,29.584,29.584,23.497,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.13,0.774,3.155,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.005,0.0,13.478,9.071,0.215,0.0,5.896,0.0,0.0,1697.1,3369.3,3369.3,22.881,18.125,0.0,3.542,3.637,0.512,7.504,0.629,10.083,-12.691,0.0,0.0,0.0,8.288,-0.066,4.937,0.0,0.728,0.0,4.649,-7.582,-2.489,0.0,-0.033,-0.438,-0.048,2.758,-0.019,-1.32,11.723,0.0,0.0,0.0,-6.228,-0.062,-1.116,-3.753,-0.161,0.0,2.733,7.599,2.018,474.2,349.3,3910.1,897.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-indirect-flat-plate.xml,51.179,51.179,28.318,28.318,22.861,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.274,0.809,1.413,0.0,0.306,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.409,0.0,14.094,9.186,0.684,0.0,8.35,0.0,0.0,2013.6,3161.3,3161.3,22.848,18.496,0.0,3.55,3.64,0.512,7.511,0.63,10.09,-12.69,0.0,0.0,0.0,8.294,-0.066,4.937,0.0,0.728,0.0,4.536,-8.112,-2.488,0.0,-0.046,-0.447,-0.049,2.727,-0.022,-1.353,11.724,0.0,0.0,0.0,-6.271,-0.062,-1.128,-3.85,-0.163,0.0,2.832,8.373,2.019,1354.2,997.5,10326.4,2369.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-solar-thermosyphon-flat-plate.xml,51.167,51.167,27.947,27.947,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.175,0.785,1.467,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,0.0,13.671,9.2,0.691,0.0,8.316,0.0,0.0,2021.1,3132.2,3132.2,22.817,18.228,0.0,3.544,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.936,0.0,0.728,0.0,4.599,-7.803,-2.488,0.0,-0.037,-0.441,-0.049,2.747,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.121,-3.787,-0.162,0.0,2.763,7.855,2.019,1354.4,997.7,10243.7,2350.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-coal.xml,65.313,65.313,26.613,26.613,23.421,0.0,0.0,0.0,0.0,15.28,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,0.0,1390.0,3177.9,3177.9,23.229,18.646,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-detailed-setpoints.xml,58.688,58.688,35.467,35.467,23.221,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.162,0.782,9.003,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.746,0.0,13.614,9.045,0.624,0.0,0.0,0.0,0.0,2496.3,3464.0,3464.0,22.792,18.183,0.0,3.544,3.637,0.512,7.506,0.629,10.085,-12.69,0.0,0.0,0.0,8.288,-0.066,4.936,0.0,0.728,0.0,4.599,-7.802,-2.488,0.0,-0.037,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.242,-0.062,-1.119,-3.781,-0.162,0.0,2.754,7.789,2.019,1354.7,998.0,11206.9,2571.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-elec-uef.xml,58.731,58.731,35.556,35.556,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.167,0.783,9.086,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.704,0.0,13.636,9.071,0.692,0.0,0.0,0.0,0.0,2033.7,3433.3,3433.3,22.803,18.2,0.0,3.545,3.637,0.512,7.506,0.63,10.086,-12.69,0.0,0.0,0.0,8.289,-0.066,4.937,0.0,0.728,0.0,4.591,-7.84,-2.488,0.0,-0.037,-0.441,-0.049,2.747,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.12,-3.785,-0.162,0.0,2.758,7.819,2.019,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-gas-outside.xml,67.067,67.067,26.412,26.412,40.655,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,17.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,5.067,0.0,0.0,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-gas-uef-fhr.xml,64.984,64.984,26.577,26.577,38.407,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.247,0.801,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.696,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,13.964,9.071,2.982,0.0,0.0,0.0,0.0,1390.4,3171.1,3171.1,23.299,18.584,0.0,3.541,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.294,-0.066,6.007,0.0,0.727,0.0,4.691,-8.532,-2.488,0.0,-0.042,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.394,-3.799,-0.162,0.0,2.818,8.394,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-gas-uef.xml,64.984,64.984,26.577,26.577,38.407,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.247,0.801,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.696,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,13.964,9.071,2.982,0.0,0.0,0.0,0.0,1390.4,3171.1,3171.1,23.299,18.584,0.0,3.541,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.294,-0.066,6.007,0.0,0.727,0.0,4.691,-8.532,-2.488,0.0,-0.042,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.394,-3.799,-0.162,0.0,2.818,8.394,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-gas.xml,65.313,65.313,26.613,26.613,38.701,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,0.0,1390.0,3177.9,3177.9,23.229,18.646,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-detailed-schedules.xml,56.862,56.862,28.407,28.407,28.455,0.0,0.0,0.0,0.0,0.0,0.0,0.469,0.0,0.0,3.661,0.664,2.486,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.061,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.644,0.0,11.58,9.212,1.419,0.0,0.0,0.0,0.0,1781.9,3101.9,3101.9,26.561,17.949,0.0,3.499,3.629,0.511,7.488,0.627,10.065,-12.729,0.0,0.0,0.0,8.322,-0.059,4.961,0.0,0.726,0.0,5.494,-3.728,-2.497,0.0,0.039,-0.372,-0.039,2.957,-0.003,-1.112,11.684,0.0,0.0,0.0,-5.895,-0.056,-1.038,-3.264,-0.15,0.0,2.384,4.959,2.01,1354.7,998.0,9993.5,2293.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.724,56.724,28.222,28.222,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.641,0.659,2.326,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.68,0.0,11.492,9.127,1.31,0.0,0.0,0.0,0.0,1774.3,3459.3,3459.3,25.073,18.126,0.0,3.511,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.963,0.0,0.726,0.0,5.495,-3.697,-2.5,0.0,0.044,-0.372,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.046,-3.334,-0.148,0.0,2.387,4.958,2.008,1354.7,998.0,10746.1,2465.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-outside.xml,56.773,56.773,33.131,33.131,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,6.72,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.093,2.525,0.0,0.0,0.0,0.0,2973.7,3120.1,3120.1,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11025.2,2529.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-uef.xml,56.724,56.724,28.222,28.222,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.641,0.659,2.326,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.68,0.0,11.492,9.127,1.31,0.0,0.0,0.0,0.0,1774.3,3459.3,3459.3,25.073,18.126,0.0,3.511,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.963,0.0,0.726,0.0,5.495,-3.697,-2.5,0.0,0.044,-0.372,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.046,-3.334,-0.148,0.0,2.387,4.958,2.008,1354.7,998.0,10746.1,2465.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-with-solar-fraction.xml,52.514,52.514,27.508,27.508,25.006,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.977,0.738,1.247,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.418,0.0,12.862,9.103,0.603,0.0,5.917,0.0,0.0,1807.8,3127.8,3127.8,24.978,18.16,0.0,3.532,3.634,0.511,7.495,0.628,10.069,-12.712,0.0,0.0,0.0,8.295,-0.06,4.942,0.0,0.727,0.0,4.907,-6.394,-2.491,0.0,-0.011,-0.42,-0.046,2.811,-0.015,-1.271,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.097,-3.622,-0.158,0.0,2.626,6.774,2.017,474.2,349.3,3821.8,877.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump-with-solar.xml,51.99,51.99,28.102,28.102,23.889,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.306,0.817,1.118,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,14.242,9.016,1.969,0.0,8.052,0.0,0.0,1821.5,3176.6,3176.6,23.455,18.611,0.0,3.544,3.64,0.512,7.515,0.629,10.08,-12.698,0.0,0.0,0.0,8.306,-0.059,4.943,0.0,0.728,0.0,4.713,-7.324,-2.488,0.0,-0.042,-0.442,-0.049,2.745,-0.021,-1.346,11.715,0.0,0.0,0.0,-6.235,-0.055,-1.124,-3.832,-0.162,0.0,2.85,8.462,2.019,1354.4,997.7,11685.0,2681.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-heat-pump.xml,56.959,56.959,29.384,29.384,27.575,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.718,0.677,3.404,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,11.828,9.116,1.721,0.0,0.0,0.0,0.0,1819.6,3410.1,3410.1,23.265,18.306,0.0,3.515,3.631,0.511,7.489,0.626,10.053,-12.751,0.0,0.0,0.0,8.323,-0.053,4.957,0.0,0.726,0.0,5.342,-4.389,-2.498,0.0,0.026,-0.389,-0.041,2.911,-0.009,-1.183,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.065,-3.435,-0.15,0.0,2.438,5.408,2.009,1354.7,998.0,10842.4,2488.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,57.976,57.976,35.001,35.001,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.192,0.789,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.514,0.0,13.652,9.117,0.021,0.0,0.0,0.0,0.0,4730.2,5466.5,5466.5,31.013,18.718,0.0,3.553,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.318,-0.062,5.339,0.0,0.776,0.0,4.546,-8.507,-2.504,0.0,-0.037,-0.44,-0.048,2.75,-0.02,-1.329,11.73,0.0,0.0,0.0,-6.238,-0.058,-1.227,-3.776,-0.183,0.0,2.75,7.993,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-model-type-stratified.xml,58.546,58.546,34.917,34.917,23.628,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.116,0.771,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.0,13.415,9.121,0.021,0.0,0.0,0.0,0.0,1904.9,3472.7,3472.7,22.913,18.094,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.672,-7.476,-2.489,0.0,-0.031,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.114,-3.74,-0.161,0.0,2.723,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-oil.xml,65.313,65.313,26.613,26.613,23.421,15.28,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,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.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,0.0,1390.0,3177.9,3177.9,23.229,18.646,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tank-wood.xml,65.313,65.313,26.613,26.613,23.421,0.0,0.0,15.28,0.0,0.0,0.0,0.386,0.0,0.0,4.278,0.809,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.933,0.0,14.101,9.071,3.628,0.0,0.0,0.0,0.0,1390.0,3177.9,3177.9,23.229,18.646,0.0,3.543,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,6.006,0.0,0.728,0.0,4.642,-8.75,-2.488,0.0,-0.046,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.4,-3.824,-0.163,0.0,2.839,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-detailed-setpoints.xml,61.22,61.22,26.412,26.412,34.808,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.052,0.0,0.0,0.0,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11342.7,2602.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-electric-outside.xml,59.322,59.322,35.68,35.68,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1915.2,3513.2,3513.2,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-electric-uef.xml,59.217,59.217,35.576,35.576,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.164,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1909.0,3508.7,3508.7,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-electric.xml,59.322,59.322,35.68,35.68,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1915.2,3513.2,3513.2,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-gas-uef.xml,59.71,59.71,26.412,26.412,33.299,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,9.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-gas-with-solar-fraction.xml,53.97,53.97,26.412,26.412,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,13.408,9.071,0.0,0.0,5.896,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,474.2,349.3,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-gas-with-solar.xml,51.66,51.66,26.835,26.835,24.825,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.214,0.794,0.0,0.0,0.304,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.274,0.0,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.796,0.0,13.838,9.262,0.0,0.0,8.001,0.0,0.0,1388.4,3146.2,3146.2,22.948,18.357,0.0,3.545,3.638,0.512,7.508,0.63,10.086,-12.69,0.0,0.0,0.0,8.291,-0.066,4.937,0.0,0.728,0.0,4.609,-7.776,-2.488,0.0,-0.04,-0.443,-0.049,2.742,-0.021,-1.338,11.724,0.0,0.0,0.0,-6.251,-0.062,-1.122,-3.806,-0.162,0.0,2.792,8.038,2.019,1344.7,989.2,9817.2,2252.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-gas.xml,61.244,61.244,26.412,26.412,34.832,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-dhw-tankless-propane.xml,61.244,61.244,26.412,26.412,23.642,0.0,11.19,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.115,0.77,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.141,0.0,13.408,9.071,0.0,0.0,0.0,0.0,0.0,1388.6,3117.3,3117.3,22.916,18.091,0.0,3.541,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.937,0.0,0.727,0.0,4.674,-7.465,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.114,-3.738,-0.161,0.0,2.722,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-2stories-garage.xml,66.272,66.272,40.516,40.516,25.757,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,6.177,1.234,8.97,0.0,0.0,5.266,0.142,0.373,0.0,0.0,0.0,0.0,2.086,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,10.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.019,0.0,21.438,9.049,0.611,0.0,0.0,0.0,0.0,2203.0,4652.3,4652.3,30.737,27.813,0.0,3.856,7.588,1.092,5.856,0.687,20.447,-24.934,0.0,0.0,0.865,6.679,-0.176,9.049,0.0,0.761,0.0,3.208,-8.584,-2.924,0.0,-0.078,-0.998,-0.099,1.89,-0.019,-1.437,23.4,0.0,0.0,-0.133,-4.728,-0.167,-1.86,-7.195,-0.157,0.0,2.591,8.467,2.342,1354.7,998.0,11171.6,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43837.0,7647.0,15016.0,0.0,575.0,9018.0,0.0,315.0,1768.0,2171.0,7327.0,26103.0,5012.0,14074.0,0.0,207.0,312.0,0.0,-101.0,0.0,2293.0,986.0,3320.0,0.0,0.0,0.0,0.0
-base-enclosure-2stories.xml,74.407,74.407,43.825,43.825,30.582,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,6.069,1.208,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,0.0,20.975,8.985,0.613,0.0,0.0,0.0,0.0,2423.5,4826.4,4826.4,33.982,27.99,0.0,3.764,7.867,1.07,7.889,0.666,20.489,-25.194,0.0,0.0,0.0,9.001,-0.146,11.226,0.0,0.745,0.0,3.763,-9.647,-3.528,0.0,-0.051,-0.99,-0.093,2.72,-0.015,-1.934,23.371,0.0,0.0,0.0,-6.362,-0.136,-2.386,-7.511,-0.158,0.0,2.524,9.522,2.841,1354.7,998.0,11171.5,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,46455.0,7678.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,26685.0,5018.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0
-base-enclosure-beds-1.xml,54.97,54.97,30.239,30.239,24.731,0.0,0.0,0.0,0.0,0.0,0.0,0.408,0.0,0.0,3.926,0.726,5.472,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.645,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,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.162,0.0,12.737,5.264,0.616,0.0,0.0,0.0,0.0,1664.1,3249.7,3249.7,23.184,17.568,0.0,3.528,3.629,0.511,7.48,0.628,10.065,-12.698,0.0,0.0,0.0,8.266,-0.064,4.941,0.0,0.725,0.0,4.874,-6.548,-2.49,0.0,-0.007,-0.418,-0.045,2.818,-0.013,-1.254,11.715,0.0,0.0,0.0,-6.131,-0.06,-1.096,-3.608,-0.158,0.0,2.615,6.535,2.017,939.6,637.2,6162.0,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19314.0,6021.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,2860.0,0.0,0.0,0.0,0.0
-base-enclosure-beds-2.xml,56.871,56.871,32.895,32.895,23.976,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.043,0.753,7.281,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.261,0.309,1.281,1.396,0.0,1.88,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.454,0.0,13.172,7.209,0.615,0.0,0.0,0.0,0.0,1981.3,3288.7,3288.7,22.999,17.879,0.0,3.536,3.633,0.511,7.492,0.629,10.08,-12.696,0.0,0.0,0.0,8.279,-0.068,4.94,0.0,0.727,0.0,4.737,-7.177,-2.49,0.0,-0.022,-0.429,-0.047,2.782,-0.016,-1.287,11.717,0.0,0.0,0.0,-6.183,-0.064,-1.106,-3.693,-0.16,0.0,2.685,7.155,2.017,1147.2,817.6,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19550.0,6027.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3090.0,0.0,0.0,0.0,0.0
-base-enclosure-beds-4.xml,60.512,60.512,38.025,38.025,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.282,0.81,10.708,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.376,0.421,1.744,1.662,0.0,2.351,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.059,0.0,14.055,10.893,0.614,0.0,0.0,0.0,0.0,2082.5,3802.4,3802.4,22.632,18.495,0.0,3.555,3.643,0.513,7.52,0.63,10.096,-12.689,0.0,0.0,0.0,8.305,-0.066,4.935,0.0,0.729,0.0,4.465,-8.422,-2.487,0.0,-0.05,-0.451,-0.05,2.715,-0.023,-1.366,11.724,0.0,0.0,0.0,-6.292,-0.062,-1.131,-3.863,-0.163,0.0,2.823,8.409,2.02,1562.3,1178.4,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20060.0,6077.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3550.0,332.0,0.0,-668.0,1000.0
-base-enclosure-beds-5.xml,62.303,62.303,40.552,40.552,21.751,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.405,0.84,12.379,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.434,0.477,1.976,1.795,0.0,2.586,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,14.507,12.689,0.614,0.0,0.0,0.0,0.0,2407.6,3950.3,3950.3,22.447,18.802,0.0,3.564,3.647,0.513,7.534,0.632,10.112,-12.683,0.0,0.0,0.0,8.322,-0.069,4.934,0.0,0.731,0.0,4.33,-9.048,-2.487,0.0,-0.065,-0.462,-0.052,2.682,-0.025,-1.397,11.73,0.0,0.0,0.0,-6.342,-0.065,-1.141,-3.946,-0.165,0.0,2.893,9.032,2.02,1769.9,1358.7,16181.1,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20304.0,6091.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3780.0,532.0,0.0,-668.0,1200.0
-base-enclosure-ceilingtypes.xml,74.998,74.998,36.037,36.037,38.961,0.0,0.0,0.0,0.0,0.0,0.0,0.643,0.0,0.0,4.41,0.842,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.482,0.0,14.629,9.071,0.619,0.0,0.0,0.0,0.0,2064.8,3733.4,3733.4,29.413,19.343,0.0,17.325,3.594,0.505,7.237,0.622,9.978,-12.816,0.0,0.0,0.0,7.719,-0.088,5.096,0.0,0.734,0.0,6.695,-7.962,-2.534,0.0,0.198,-0.305,-0.029,2.934,0.015,-0.908,11.597,0.0,0.0,0.0,-6.045,-0.078,-0.963,-3.531,-0.137,0.0,2.501,7.611,1.973,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,45060.0,8866.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,14165.0,4699.0,32603.0,6180.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,14963.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-floortypes.xml,67.512,67.512,28.932,28.932,38.579,0.0,0.0,0.0,0.0,0.0,0.0,0.636,0.0,0.0,3.5,0.616,9.213,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.051,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,10.624,9.178,0.621,0.0,0.0,0.0,0.0,1721.5,3493.8,3493.8,29.078,21.345,0.0,3.477,3.646,0.0,0.0,0.672,9.515,-13.016,0.0,0.0,29.07,0.0,-0.224,2.449,0.0,0.786,0.0,7.386,-6.522,-1.567,0.0,0.42,-0.063,0.0,0.0,0.099,0.961,10.952,0.0,0.0,-7.905,0.0,-0.219,-0.223,-1.995,-0.084,0.0,2.353,5.46,1.079,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37680.0,8722.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2341.0,21015.0,6097.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-enclosure-garage.xml,59.661,59.661,33.997,33.997,25.664,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.023,0.521,9.117,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.705,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,8.945,9.071,0.726,0.0,0.0,0.0,0.0,2023.9,2875.5,2875.5,19.149,12.341,0.0,3.531,3.793,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.426,0.0,0.0,0.0,4.35,-5.766,-2.495,0.0,0.117,-0.266,-0.033,2.467,0.004,-1.083,8.261,0.0,0.0,0.0,-5.594,-0.043,-1.19,-2.577,0.0,0.0,1.38,5.629,2.012,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28888.0,6755.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12674.0,523.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-infil-ach-house-pressure.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32809.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4697.0,19793.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,630.0,3320.0,133.0,0.0,-667.0,800.0
-base-enclosure-infil-cfm-house-pressure.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-infil-cfm50.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-infil-ela.xml,66.189,66.189,35.495,35.495,30.693,0.0,0.0,0.0,0.0,0.0,0.0,0.506,0.0,0.0,4.083,0.76,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,0.0,13.206,9.071,0.617,0.0,0.0,0.0,0.0,2057.7,3535.9,3535.9,27.655,19.053,0.0,3.498,3.639,0.512,7.49,0.631,10.105,-12.714,0.0,0.0,0.0,8.299,-0.07,10.683,0.0,0.726,0.0,5.971,-7.834,-2.496,0.0,0.009,-0.395,-0.042,2.87,-0.007,-1.171,11.699,0.0,0.0,0.0,-6.047,-0.066,-2.337,-3.491,-0.153,0.0,2.73,7.743,2.011,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38021.0,8729.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9790.0,20501.0,6065.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1314.0,3320.0,0.0,0.0,0.0,0.0
-base-enclosure-infil-flue.xml,60.081,60.081,35.477,35.477,24.604,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.144,0.777,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.521,9.071,0.615,0.0,0.0,0.0,0.0,2041.4,3799.4,3799.4,23.516,18.374,0.0,3.533,3.635,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.291,-0.067,6.008,0.0,0.727,0.0,4.853,-7.802,-2.489,0.0,-0.03,-0.434,-0.048,2.775,-0.018,-1.303,11.723,0.0,0.0,0.0,-6.2,-0.063,-1.38,-3.714,-0.16,0.0,2.749,7.778,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-infil-natural-ach.xml,65.817,65.817,35.494,35.494,30.322,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.0,0.0,4.086,0.761,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,13.225,9.071,0.617,0.0,0.0,0.0,0.0,2074.0,3531.1,3531.1,27.417,19.008,0.0,3.499,3.639,0.512,7.49,0.631,10.102,-12.71,0.0,0.0,0.0,8.299,-0.07,10.397,0.0,0.726,0.0,5.904,-7.831,-2.496,0.0,0.006,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.281,-3.504,-0.154,0.0,2.731,7.746,2.012,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37772.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20468.0,6064.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0
-base-enclosure-infil-natural-cfm.xml,65.817,65.817,35.494,35.494,30.322,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.0,0.0,4.086,0.761,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,13.225,9.071,0.617,0.0,0.0,0.0,0.0,2074.0,3531.1,3531.1,27.417,19.008,0.0,3.499,3.639,0.512,7.49,0.631,10.102,-12.71,0.0,0.0,0.0,8.299,-0.07,10.397,0.0,0.726,0.0,5.904,-7.831,-2.496,0.0,0.006,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.281,-3.504,-0.154,0.0,2.731,7.746,2.012,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37772.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20468.0,6064.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0
-base-enclosure-orientations.xml,58.929,58.929,35.454,35.454,23.475,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.139,0.776,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.984,0.0,13.52,9.071,0.615,0.0,0.0,0.0,0.0,2051.3,3775.5,3775.5,22.829,18.154,0.0,3.54,3.634,0.511,7.498,0.863,10.076,-12.691,0.0,0.0,0.0,8.278,-0.066,4.936,0.0,0.727,0.0,4.643,-7.799,-2.489,0.0,-0.032,-0.438,-0.048,2.755,-0.149,-1.32,11.723,0.0,0.0,0.0,-6.227,-0.062,-1.117,-3.762,-0.161,0.0,2.735,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-overhangs.xml,58.843,58.843,35.317,35.317,23.526,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.028,0.75,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.032,0.0,13.062,9.071,0.615,0.0,0.0,0.0,0.0,2038.8,3380.8,3380.8,22.769,17.643,0.0,3.537,3.633,0.511,7.487,0.629,9.995,-12.285,0.0,0.0,0.0,8.257,-0.067,4.937,0.0,0.728,0.0,4.648,-7.807,-2.49,0.0,-0.017,-0.427,-0.046,2.78,-0.016,-1.336,11.091,0.0,0.0,0.0,-6.176,-0.063,-1.111,-3.717,-0.16,0.0,2.647,7.773,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-rooftypes.xml,58.663,58.663,35.343,35.343,23.32,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.05,0.757,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.839,0.0,13.151,9.071,0.615,0.0,0.0,0.0,0.0,2050.7,3680.2,3680.2,22.672,17.332,0.0,3.656,3.635,0.512,7.499,0.629,10.079,-12.691,0.0,0.0,0.0,8.28,-0.064,4.936,0.0,0.727,0.0,4.604,-7.799,-2.489,0.0,-0.287,-0.436,-0.048,2.761,-0.019,-1.315,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.118,-3.757,-0.161,0.0,2.479,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-skylights-physical-properties.xml,61.128,61.128,36.529,36.529,24.599,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.994,0.975,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.036,0.0,17.032,9.071,0.614,0.0,0.0,0.0,0.0,2044.2,3842.6,3842.6,24.529,21.363,0.0,3.54,3.651,0.514,7.558,0.633,10.115,-12.626,2.713,-2.174,0.0,8.436,-0.07,4.955,0.0,0.73,0.0,4.878,-7.78,-2.485,0.0,-0.129,-0.495,-0.056,2.638,-0.033,-1.464,11.705,-0.052,3.749,0.0,-6.527,-0.065,-1.131,-3.965,-0.167,0.0,3.45,7.805,2.023,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35156.0,8662.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24438.0,6113.0,7037.0,4572.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-skylights-shading.xml,59.83,59.83,35.523,35.523,24.308,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.184,0.786,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.764,0.0,13.687,9.071,0.615,0.0,0.0,0.0,0.0,2054.1,3806.9,3806.9,23.433,18.448,0.0,3.527,3.633,0.511,7.501,0.629,10.073,-12.685,1.146,-0.321,0.0,8.292,-0.065,4.943,0.0,0.728,0.0,4.797,-7.8,-2.489,0.0,-0.036,-0.435,-0.048,2.767,-0.018,-1.311,11.717,-0.492,0.431,0.0,-6.219,-0.061,-1.111,-3.733,-0.161,0.0,2.779,7.781,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33454.0,8628.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20557.0,6073.0,7037.0,732.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-skylights-storms.xml,59.163,59.163,36.197,36.197,22.966,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.745,0.918,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,0.0,16.026,9.071,0.614,0.0,0.0,0.0,0.0,2053.3,4005.9,4005.9,23.402,20.566,0.0,3.554,3.654,0.514,7.556,0.633,10.123,-12.643,0.856,-1.409,0.0,8.402,-0.068,4.943,0.0,0.729,0.0,4.567,-7.781,-2.485,0.0,-0.111,-0.488,-0.055,2.642,-0.032,-1.457,11.715,0.261,2.537,0.0,-6.485,-0.064,-1.14,-3.983,-0.167,0.0,3.226,7.804,2.022,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33526.0,8630.0,7508.0,696.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22620.0,6082.0,7037.0,2785.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-skylights.xml,58.911,58.911,36.292,36.292,22.618,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.826,0.937,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.181,0.0,16.371,9.071,0.613,0.0,0.0,0.0,0.0,2052.8,3878.8,3878.8,23.319,20.847,0.0,3.562,3.659,0.515,7.569,0.634,10.135,-12.639,0.764,-1.653,0.0,8.431,-0.068,4.944,0.0,0.73,0.0,4.504,-7.78,-2.485,0.0,-0.122,-0.496,-0.056,2.622,-0.034,-1.479,11.709,0.263,2.973,0.0,-6.529,-0.064,-1.144,-4.026,-0.167,0.0,3.288,7.805,2.022,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33454.0,8628.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22840.0,6086.0,7037.0,3001.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-split-level.xml,40.983,40.983,29.121,29.121,11.862,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.0,3.804,0.701,9.407,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.101,0.0,12.007,9.291,0.608,0.0,0.0,0.0,0.0,1661.4,2825.1,2825.1,13.591,13.312,0.0,3.945,3.837,0.0,0.0,0.688,10.05,-12.161,0.0,0.0,0.0,7.969,-0.147,2.743,0.0,0.773,0.0,0.319,-5.952,-1.448,0.0,-0.058,-0.571,0.0,0.0,-0.016,-0.626,12.095,0.0,0.0,0.0,-1.544,-0.144,-0.553,-3.486,-0.164,0.0,0.082,6.062,1.198,1354.7,998.0,11171.6,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29086.0,1686.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2716.0,13454.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,365.0,3320.0,414.0,0.0,-386.0,800.0
-base-enclosure-thermal-mass.xml,58.51,58.51,35.425,35.425,23.085,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.12,0.773,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.619,0.0,13.466,9.071,0.615,0.0,0.0,0.0,0.0,2050.5,3404.5,3404.5,22.694,17.844,0.0,3.544,3.634,0.512,7.484,0.629,10.104,-12.697,0.0,0.0,0.0,8.256,-0.104,4.93,0.0,0.726,0.0,4.56,-7.799,-2.489,0.0,-0.031,-0.437,-0.048,2.763,-0.019,-1.345,11.731,0.0,0.0,0.0,-6.227,-0.1,-1.124,-3.85,-0.162,0.0,2.697,7.782,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-walltypes.xml,75.66,75.66,34.353,34.353,41.307,0.0,0.0,0.0,0.0,0.0,0.0,0.681,0.0,0.0,3.011,0.525,9.02,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.05,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.671,0.0,9.02,9.071,0.622,0.0,0.0,0.0,0.0,2064.7,2845.1,2845.1,25.586,12.317,0.0,3.347,16.954,0.473,7.138,0.836,1.295,-1.58,0.0,0.0,0.0,7.332,-0.051,5.072,0.0,0.731,0.0,7.406,-8.029,-2.552,0.0,0.291,-0.597,-0.008,3.408,-0.083,-0.07,1.661,0.0,0.0,0.0,-4.954,-0.045,-0.95,-0.49,-0.122,0.0,1.64,7.537,1.955,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35821.0,8678.0,918.0,0.0,575.0,16373.0,0.0,0.0,2408.0,2171.0,4699.0,15052.0,5936.0,979.0,0.0,207.0,1686.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-natural-ventilation-availability.xml,57.722,57.722,34.42,34.42,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,3.319,0.572,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,9.825,9.071,0.618,0.0,0.0,0.0,0.0,2038.7,3383.6,3383.6,22.816,17.651,0.0,3.544,3.637,0.512,7.513,0.629,10.084,-12.691,0.0,0.0,0.0,8.339,-0.064,4.937,0.0,0.728,0.0,4.615,-7.8,-2.489,0.0,0.047,-0.377,-0.039,2.955,-0.004,-1.132,11.723,0.0,0.0,0.0,-5.942,-0.06,-1.038,-8.093,-0.151,0.0,2.279,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-none.xml,59.6,59.6,33.623,33.623,25.977,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,2.612,0.441,9.018,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.318,0.0,7.46,9.071,0.619,0.0,0.0,0.0,0.0,2026.1,2428.3,2428.3,17.121,8.237,0.0,3.458,5.149,0.499,7.205,0.6,0.0,0.0,0.0,0.0,0.0,7.478,-0.043,4.913,0.0,0.722,0.0,4.703,-7.908,-2.516,0.0,0.21,-0.364,-0.022,3.226,0.016,0.0,0.0,0.0,0.0,0.0,-5.15,-0.041,-1.095,0.0,-0.142,0.0,1.219,7.663,1.991,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,26058.0,8377.0,0.0,0.0,575.0,7829.0,0.0,0.0,2408.0,2171.0,4699.0,12647.0,5827.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-physical-properties.xml,66.439,66.439,35.602,35.602,30.837,0.0,0.0,0.0,0.0,0.0,0.0,0.509,0.0,0.0,4.17,0.778,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.88,0.0,13.519,9.071,0.617,0.0,0.0,0.0,0.0,2055.9,3745.9,3745.9,27.509,21.025,0.0,3.483,3.628,0.511,7.479,0.63,19.599,-16.819,0.0,0.0,0.0,8.385,-0.085,5.014,0.0,0.73,0.0,6.013,-7.855,-2.5,0.0,0.029,-0.371,-0.039,2.872,-0.0,-4.822,14.292,0.0,0.0,0.0,-6.099,-0.08,-1.027,-3.403,-0.151,0.0,2.834,7.721,2.007,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39235.0,8755.0,13788.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22192.0,6073.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-shading-seasons.xml,58.63,58.63,35.505,35.505,23.126,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.183,0.787,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.657,0.0,13.718,9.071,0.614,0.0,0.0,0.0,0.0,2038.7,3779.1,3779.1,22.816,18.188,0.0,3.546,3.638,0.512,7.492,0.63,10.091,-12.691,0.0,0.0,0.0,8.23,-0.074,4.937,0.0,0.728,0.0,4.58,-7.8,-2.489,0.0,-0.054,-0.459,-0.051,2.685,-0.024,-1.234,12.133,0.0,0.0,0.0,-6.385,-0.07,-1.136,-3.915,-0.164,0.0,2.771,7.783,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-shading.xml,58.487,58.487,33.128,33.128,25.359,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.0,2.238,0.338,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.045,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.0,5.784,9.071,0.623,0.0,0.0,0.0,0.0,2051.9,2928.6,2928.6,22.859,10.848,0.0,3.582,3.692,0.519,7.538,0.642,10.689,-11.794,0.0,0.0,0.0,8.474,-0.061,5.031,0.0,0.74,0.0,4.964,-8.052,-2.553,0.0,0.393,-0.072,0.004,3.608,0.068,-3.443,2.905,0.0,0.0,0.0,-4.566,-0.057,-0.855,-2.597,-0.113,0.0,1.216,7.51,1.955,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15690.0,5940.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-enclosure-windows-storms.xml,59.712,59.712,34.922,34.922,24.79,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.693,0.673,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.217,0.0,11.681,9.071,0.617,0.0,0.0,0.0,0.0,2039.1,3562.3,3562.3,22.283,16.278,0.0,3.504,3.602,0.507,7.401,0.621,8.59,-9.448,0.0,0.0,0.0,8.025,-0.063,4.931,0.0,0.724,0.0,4.847,-7.814,-2.492,0.0,0.036,-0.387,-0.041,2.884,-0.007,-0.665,8.68,0.0,0.0,0.0,-5.952,-0.059,-1.093,-3.538,-0.156,0.0,2.38,7.763,2.015,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,6680.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18533.0,6009.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-foundation-ambient.xml,47.906,47.906,29.845,29.845,18.061,0.0,0.0,0.0,0.0,0.0,0.0,0.298,0.0,0.0,4.481,0.853,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.92,0.0,14.86,9.178,0.607,0.0,0.0,0.0,1.0,1689.2,3494.2,3494.2,20.426,21.544,0.0,3.813,3.819,0.0,0.0,0.766,10.497,-11.429,0.0,0.0,10.197,0.0,-0.472,2.237,0.0,0.784,0.0,3.703,-5.899,-1.423,0.0,-0.062,-0.542,0.0,0.0,0.037,-0.071,12.54,0.0,0.0,-3.677,0.0,-0.465,-0.369,-2.652,-0.155,0.0,3.165,6.115,1.223,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,27795.0,8439.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2341.0,19975.0,6084.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-basement-garage.xml,52.747,52.747,32.156,32.156,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.152,0.778,9.248,0.0,0.0,3.404,0.142,0.277,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.283,0.0,13.548,9.2,0.614,0.0,0.0,0.0,0.0,1834.4,3670.3,3670.3,21.184,18.564,0.0,3.653,4.732,0.514,5.492,0.701,9.833,-12.62,0.0,0.0,0.833,6.114,-0.044,3.407,0.0,0.734,0.0,4.212,-6.728,-1.879,0.0,-0.013,-0.615,-0.052,1.964,-0.035,-1.095,11.668,0.0,0.0,-0.122,-4.544,-0.041,-0.742,-3.609,-0.163,0.0,2.872,6.732,1.525,1354.7,998.0,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31513.0,8575.0,7508.0,0.0,603.0,7269.0,0.0,318.0,1768.0,2171.0,3301.0,19361.0,6043.0,7037.0,0.0,198.0,128.0,0.0,-102.0,0.0,2293.0,443.0,3320.0,331.0,0.0,-469.0,800.0
-base-foundation-belly-wing-no-skirt.xml,50.591,50.591,29.086,29.086,21.505,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.822,0.7,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.093,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.139,0.0,11.968,9.178,0.609,0.0,0.0,0.0,0.0,1681.3,3199.8,3199.8,25.4,18.461,0.0,3.982,5.368,0.0,0.0,0.754,8.71,-11.203,0.0,0.0,10.285,0.0,-0.375,2.288,0.0,0.792,0.0,6.626,-6.019,-1.453,0.0,0.329,-0.564,0.0,0.0,0.048,0.154,9.491,0.0,0.0,-3.365,0.0,-0.368,-0.358,-2.426,-0.14,0.0,2.223,5.993,1.193,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-belly-wing-skirt.xml,50.207,50.207,29.094,29.094,21.113,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.0,3.832,0.703,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.094,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,12.018,9.178,0.608,0.0,0.0,0.0,0.0,1680.5,3216.2,3216.2,25.24,18.419,0.0,3.985,5.372,0.0,0.0,0.755,8.717,-11.178,0.0,0.0,9.978,0.0,-0.369,2.283,0.0,0.792,0.0,6.509,-6.006,-1.45,0.0,0.321,-0.577,0.0,0.0,0.046,0.13,9.516,0.0,0.0,-3.297,0.0,-0.362,-0.362,-2.444,-0.141,0.0,2.229,6.006,1.196,1354.7,998.0,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-complex.xml,77.802,77.802,36.754,36.754,41.048,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.962,0.971,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.442,0.0,16.947,9.071,0.618,0.0,0.0,0.0,2.0,2078.8,4106.8,4106.8,33.037,21.717,0.0,3.442,3.664,0.521,19.568,0.652,10.158,-12.86,0.0,0.0,0.0,8.68,-0.12,6.325,0.0,0.74,0.0,7.771,-8.008,-2.548,0.0,0.058,-0.344,-0.042,3.886,0.001,-0.922,11.551,0.0,0.0,0.0,-4.502,-0.112,-1.171,-3.975,-0.134,0.0,3.304,7.566,1.959,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42690.0,8820.0,7508.0,0.0,575.0,15887.0,0.0,0.0,3031.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-foundation-conditioned-basement-slab-insulation-full.xml,55.986,55.986,35.977,35.977,20.009,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.603,0.888,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,15.503,9.071,0.613,0.0,0.0,0.0,0.0,2049.4,3628.8,3628.8,22.089,19.916,0.0,3.63,3.702,0.521,8.197,0.644,10.264,-12.674,0.0,0.0,0.0,4.764,-0.069,4.959,0.0,0.733,0.0,4.028,-7.798,-2.489,0.0,-0.083,-0.475,-0.054,2.229,-0.029,-1.44,11.74,0.0,0.0,0.0,-3.663,-0.063,-1.132,-4.074,-0.165,0.0,3.066,7.789,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32068.0,8591.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-foundation-conditioned-basement-slab-insulation.xml,57.567,57.567,35.674,35.674,21.894,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.336,0.823,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,14.351,9.071,0.614,0.0,0.0,0.0,0.0,2035.4,3671.0,3671.0,22.55,19.026,0.0,3.573,3.657,0.515,7.807,0.633,10.133,-12.689,0.0,0.0,0.0,6.854,-0.061,4.937,0.0,0.729,0.0,4.366,-7.791,-2.487,0.0,-0.06,-0.458,-0.051,2.565,-0.025,-1.391,11.724,0.0,0.0,0.0,-5.239,-0.057,-1.129,-3.884,-0.163,0.0,2.878,7.792,2.02,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32068.0,8591.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-foundation-conditioned-basement-wall-insulation.xml,57.5,57.5,35.054,35.054,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.832,0.701,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.02,0.0,12.179,9.071,0.615,0.0,0.0,0.0,0.0,2040.5,3659.9,3659.9,23.001,18.018,0.0,3.576,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.942,-0.072,4.956,0.0,0.732,0.0,4.481,-7.81,-2.491,0.0,0.022,-0.395,-0.042,1.15,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.086,-3.489,-0.158,0.0,2.56,7.771,2.016,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,36031.0,8683.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-foundation-conditioned-crawlspace.xml,47.443,47.443,28.55,28.55,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,3.429,0.615,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.68,0.0,10.552,9.178,0.615,0.0,0.0,0.0,0.0,1665.1,2797.9,2797.9,16.166,11.78,0.0,3.707,3.603,0.507,5.099,0.623,9.803,-12.661,0.0,0.0,0.0,9.971,-0.063,3.499,0.0,0.729,0.0,0.0,-5.999,-1.462,0.0,0.051,-0.445,-0.049,1.827,-0.02,-1.119,11.692,0.0,0.0,0.0,-3.741,-0.059,-0.812,-3.588,-0.16,0.0,0.0,5.997,1.184,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,22204.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3519.0,13595.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,472.0,3320.0,300.0,0.0,-500.0,800.0
-base-foundation-multiple.xml,42.638,42.638,29.117,29.117,13.521,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.197,0.792,9.18,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.809,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.657,0.0,13.634,9.122,0.695,0.0,0.0,0.0,0.0,1649.6,2889.8,2889.8,15.635,15.596,0.0,3.981,3.865,0.0,0.0,0.777,10.554,-11.241,0.0,0.0,5.346,0.0,-0.386,2.638,0.0,0.0,0.0,2.027,-3.832,-1.416,0.0,-0.108,-0.683,0.0,0.0,-0.007,-0.371,12.727,0.0,0.0,-0.653,0.0,-0.382,-0.533,-2.975,0.0,0.0,1.633,3.979,1.23,1354.7,998.0,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23230.0,4898.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2341.0,14574.0,233.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-slab.xml,40.36,40.36,29.01,29.01,11.35,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.886,0.721,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.622,0.0,12.368,9.178,0.607,0.0,0.0,0.0,0.0,1652.0,2907.0,2907.0,13.212,13.37,0.0,3.926,3.797,0.0,0.0,0.689,10.052,-12.092,0.0,0.0,0.0,8.098,-0.157,2.109,0.0,0.773,0.0,0.305,-5.927,-1.442,0.0,-0.053,-0.562,0.0,0.0,-0.019,-0.689,12.164,0.0,0.0,0.0,-1.525,-0.155,-0.433,-3.305,-0.168,0.0,0.084,6.089,1.204,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28709.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2341.0,13403.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-unconditioned-basement-above-grade.xml,43.687,43.687,29.189,29.189,14.499,0.0,0.0,0.0,0.0,0.0,0.0,0.239,0.0,0.0,4.278,0.811,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.748,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.574,0.0,13.995,9.122,0.713,0.0,0.0,0.0,0.0,1639.7,2985.0,2985.0,16.758,16.477,0.0,3.987,3.868,0.0,0.0,0.776,10.611,-11.315,0.0,0.0,5.964,0.0,-0.396,2.651,0.0,0.0,0.0,2.384,-3.853,-1.423,0.0,-0.086,-0.662,0.0,0.0,-0.003,-0.366,12.654,0.0,0.0,-0.503,0.0,-0.391,-0.519,-2.965,0.0,0.0,1.871,3.958,1.223,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23205.0,4907.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2341.0,14575.0,243.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-unconditioned-basement-assembly-r.xml,41.112,41.112,28.642,28.642,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,3.86,0.713,9.195,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.674,0.0,12.189,9.122,0.712,0.0,0.0,0.0,0.0,1644.8,2868.9,2868.9,15.087,14.374,0.0,3.975,3.836,0.0,0.0,0.766,10.565,-11.128,0.0,0.0,4.499,0.0,-0.41,2.635,0.0,0.0,0.0,1.828,-3.816,-1.409,0.0,-0.082,-0.633,0.0,0.0,0.021,-0.332,12.841,0.0,0.0,-2.062,0.0,-0.406,-0.536,-2.808,0.0,0.0,1.188,3.996,1.237,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,21026.0,4847.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2341.0,14021.0,251.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-unconditioned-basement-wall-insulation.xml,49.385,49.385,28.546,28.546,20.839,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,3.535,0.634,9.129,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.987,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.504,0.0,10.835,9.122,0.641,0.0,0.0,0.0,0.0,1663.1,2703.1,2703.1,17.247,12.858,0.0,3.731,3.627,0.0,0.0,0.636,9.315,-12.484,0.0,0.0,14.718,0.0,-0.055,2.561,0.0,0.0,0.0,2.661,-3.989,-1.475,0.0,0.08,-0.423,0.0,0.0,-0.009,-0.362,11.485,0.0,0.0,-2.721,0.0,-0.054,-0.488,-2.784,0.0,0.0,1.291,3.822,1.171,1354.7,998.0,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24287.0,2046.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2341.0,15378.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-unconditioned-basement.xml,42.651,42.651,29.117,29.117,13.535,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.214,0.796,9.189,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.778,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.671,0.0,13.713,9.122,0.704,0.0,0.0,0.0,0.0,1646.0,3238.1,3238.1,15.847,15.745,0.0,3.972,3.83,0.0,0.0,0.757,10.505,-11.224,0.0,0.0,5.393,0.0,-0.392,2.638,0.0,0.0,0.0,2.106,-3.83,-1.415,0.0,-0.088,-0.641,0.0,0.0,0.011,-0.398,12.744,0.0,0.0,-0.706,0.0,-0.387,-0.533,-2.975,0.0,0.0,1.696,3.981,1.231,1354.7,998.0,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23246.0,4908.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2341.0,14586.0,243.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-unvented-crawlspace.xml,40.939,40.939,29.571,29.571,11.368,0.0,0.0,0.0,0.0,0.0,0.0,0.188,0.0,0.0,4.251,0.808,9.295,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.112,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,13.883,9.178,0.709,0.0,0.0,0.0,0.0,1656.8,2844.2,2844.2,14.764,15.263,0.0,3.961,3.815,0.0,0.0,0.776,10.61,-10.815,0.0,0.0,4.565,0.0,-0.449,2.148,0.0,0.773,0.0,1.661,-5.373,-1.377,0.0,-0.191,-0.753,0.0,0.0,0.006,-0.578,13.154,0.0,0.0,-2.013,0.0,-0.445,-0.454,-3.062,-0.191,0.0,1.346,6.05,1.268,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,22014.0,5793.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2341.0,15463.0,1681.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-vented-crawlspace-above-grade.xml,43.335,43.335,29.668,29.668,13.668,0.0,0.0,0.0,0.0,0.0,0.0,0.225,0.0,0.0,4.254,0.806,9.36,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.106,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.796,0.0,13.829,9.178,0.778,0.0,0.0,0.0,0.0,1674.1,3132.6,3132.6,16.627,16.433,0.0,3.959,3.799,0.0,0.0,0.753,10.471,-11.092,0.0,0.0,6.716,0.0,-0.438,2.16,0.0,0.779,0.0,2.206,-5.476,-1.403,0.0,-0.092,-0.641,0.0,0.0,0.024,-0.383,12.877,0.0,0.0,-2.421,0.0,-0.433,-0.342,-2.972,-0.175,0.0,1.462,5.94,1.243,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24649.0,7601.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2341.0,16193.0,2192.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-vented-crawlspace.xml,43.26,43.26,29.514,29.514,13.746,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.124,0.774,9.368,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.104,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.869,0.0,13.258,9.178,0.786,0.0,0.0,0.0,0.0,1673.7,3100.7,3100.7,16.634,16.104,0.0,3.968,3.823,0.0,0.0,0.763,10.539,-11.154,0.0,0.0,6.741,0.0,-0.429,2.164,0.0,0.781,0.0,2.221,-5.501,-1.41,0.0,-0.077,-0.636,0.0,0.0,0.02,-0.336,12.815,0.0,0.0,-2.93,0.0,-0.424,-0.335,-2.898,-0.171,0.0,1.339,5.914,1.236,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24332.0,7292.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2341.0,16104.0,2105.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0
-base-foundation-walkout-basement.xml,64.61,64.61,35.851,35.851,28.759,0.0,0.0,0.0,0.0,0.0,0.0,0.474,0.0,0.0,4.393,0.835,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.933,0.0,14.52,9.071,0.616,0.0,0.0,0.0,0.0,2068.7,3982.0,3982.0,26.434,20.057,0.0,3.529,3.693,0.521,7.366,0.648,10.885,-12.924,0.0,0.0,0.0,10.144,-0.075,6.77,0.0,0.728,0.0,5.626,-7.825,-2.494,0.0,-0.089,-0.499,-0.058,1.498,-0.027,-1.441,12.103,0.0,0.0,0.0,-3.623,-0.069,-1.466,-4.145,-0.157,0.0,2.896,7.754,2.013,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34792.0,8652.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2885.0,2171.0,6082.0,20199.0,6061.0,7234.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,819.0,3320.0,0.0,0.0,0.0,0.0
-base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,44.681,44.681,44.681,44.681,0.0,0.0,0.0,0.0,0.0,0.0,9.587,0.728,0.092,0.005,3.173,0.944,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,0.096,12.069,9.071,0.615,0.0,0.0,0.0,0.0,6657.8,3529.0,6657.8,23.137,14.461,0.0,3.569,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.289,-0.067,4.934,0.0,0.728,0.0,3.837,-7.8,-2.489,0.0,0.039,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.131,-3.777,-0.162,0.0,1.169,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,44407.0,53923.0,28548.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.199,34.199,34.199,34.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.21,0.959,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3316.8,3316.8,0.0,15.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.001,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.15,-3.654,-0.163,0.0,1.746,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.032,0.288,0.017,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,0.0,6904.8,3688.3,6904.8,23.921,15.915,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.037,42.037,42.037,42.037,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.781,0.298,0.03,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.328,0.0,9.071,0.592,0.0,0.0,0.0,0.0,7178.1,1786.0,7178.1,24.931,0.0,0.0,3.495,3.641,0.512,7.491,0.63,10.097,-12.691,0.0,0.0,0.0,8.142,-0.07,5.145,0.0,0.728,0.0,5.659,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.468,45.468,45.468,45.468,0.0,0.0,0.0,0.0,0.0,0.0,9.269,0.935,0.912,0.051,3.196,0.955,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.542,0.963,12.225,9.071,0.615,0.0,0.0,150.0,0.0,10160.7,3606.0,10160.7,37.134,15.76,0.0,3.603,3.664,0.514,7.734,0.62,9.995,-12.822,0.0,0.0,0.0,9.051,0.07,5.003,0.0,0.76,0.0,4.315,-7.794,-2.499,0.0,0.032,-0.419,-0.047,2.844,-0.028,-1.416,11.591,0.0,0.0,0.0,-6.236,0.061,-1.14,-4.206,-0.159,0.0,1.739,7.787,2.008,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.563,45.563,45.563,45.563,0.0,0.0,0.0,0.0,0.0,0.0,9.795,1.032,0.288,0.017,3.292,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,0.0,6904.8,3682.7,6904.8,23.921,15.915,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-1-speed.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,9.721,1.032,0.288,0.017,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.237,0.304,12.673,9.071,0.615,0.0,0.0,0.0,0.0,6904.8,3688.3,6904.8,23.921,15.915,0.0,3.522,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.037,0.0,0.728,0.0,5.002,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-2-speed.xml,41.404,41.404,41.404,41.404,0.0,0.0,0.0,0.0,0.0,0.0,7.559,0.601,0.276,0.012,2.208,0.596,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.251,0.287,12.899,9.071,0.615,0.0,0.0,0.0,0.0,6884.8,3238.8,6884.8,23.913,16.808,0.0,3.482,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.293,-0.067,5.076,0.0,0.728,0.0,6.011,-7.8,-2.489,0.0,0.001,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.778,-0.162,0.0,2.021,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.281,40.281,40.281,40.281,0.0,0.0,0.0,0.0,0.0,0.0,7.976,0.073,0.0,0.0,1.984,0.097,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,12.369,9.071,0.615,0.0,0.0,0.0,0.0,4127.3,2922.4,4127.3,21.901,15.371,0.0,3.573,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.289,-0.067,4.864,0.0,0.728,0.0,3.91,-7.8,-2.489,0.0,0.031,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.133,-3.778,-0.162,0.0,1.483,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,68361.0,68361.0,0.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.495,53.495,38.56,38.56,14.935,0.0,0.0,0.0,0.0,0.0,5.236,0.366,0.0,0.056,2.309,0.442,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.351,11.136,15.326,9.071,0.616,0.0,0.0,1.0,5.0,3139.8,2982.6,3139.8,22.566,17.524,0.0,3.278,3.597,0.506,7.506,0.614,9.915,-12.591,0.0,0.0,0.0,8.221,-0.031,6.353,0.0,0.719,0.0,10.085,-7.688,-2.467,0.0,-0.166,-0.467,-0.052,2.794,-0.032,-1.454,11.822,0.0,0.0,0.0,-6.254,-0.027,-1.43,-3.736,-0.167,0.0,4.732,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.466,56.466,37.406,37.406,19.06,0.0,0.0,0.0,0.0,0.0,4.169,0.245,0.0,0.072,2.328,0.444,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.938,14.195,15.438,9.071,0.616,0.0,0.0,230.0,5.0,3049.0,3136.0,3136.0,22.812,17.524,0.0,3.295,3.593,0.505,7.4,0.613,9.849,-12.676,0.0,0.0,0.0,8.231,-0.016,6.342,0.0,0.714,0.0,9.587,-7.709,-2.455,0.0,-0.156,-0.463,-0.052,2.714,-0.03,-1.496,11.737,0.0,0.0,0.0,-6.195,-0.013,-1.453,-3.721,-0.17,0.0,4.619,7.87,2.052,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.603,53.603,38.663,38.663,14.939,0.0,0.0,0.0,0.0,0.0,5.314,0.371,0.0,0.056,2.328,0.444,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,11.139,15.476,9.071,0.615,0.0,0.0,1.0,5.0,3139.8,3319.9,3319.9,22.566,17.524,0.0,3.32,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,6.429,0.0,0.727,0.0,10.224,-7.81,-2.491,0.0,-0.125,-0.431,-0.047,2.777,-0.017,-1.296,11.708,0.0,0.0,0.0,-6.188,-0.063,-1.366,-3.722,-0.16,0.0,4.781,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,51.479,51.479,37.045,37.045,14.434,0.0,0.0,0.0,0.0,0.0,4.724,0.033,0.0,0.052,1.986,0.099,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.464,10.783,12.694,9.071,0.615,0.0,0.0,2.0,0.0,3045.8,2948.7,3045.8,22.52,16.639,0.0,3.473,3.635,0.512,7.501,0.63,10.088,-12.691,0.0,0.0,0.0,8.297,-0.07,6.128,0.0,0.727,0.0,6.211,-7.805,-2.49,0.0,0.02,-0.434,-0.048,2.772,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.2,-0.066,-1.39,-3.713,-0.16,0.0,1.906,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,44407.0,53923.0,60000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.698,53.698,38.829,38.829,14.868,0.0,0.0,0.0,0.0,0.0,5.099,0.35,0.0,0.448,2.337,0.444,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.021,12.343,15.578,9.071,0.615,0.0,0.0,2.0,5.0,3136.6,3319.8,3319.8,26.099,17.507,0.0,3.267,3.64,0.512,7.51,0.63,10.086,-12.696,0.0,0.0,0.0,8.301,-0.063,5.547,0.0,0.727,0.0,11.498,-7.798,-2.488,0.0,-0.133,-0.439,-0.048,2.749,-0.02,-1.331,11.717,0.0,0.0,0.0,-6.236,-0.059,-1.109,-3.787,-0.162,0.0,4.796,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40331.0,16130.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,42.688,42.688,42.688,42.688,0.0,0.0,0.0,0.0,0.0,0.0,8.975,0.573,0.233,0.009,2.601,0.145,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.505,0.241,14.393,9.071,0.615,0.0,0.0,0.0,0.0,5354.9,4014.2,5354.9,24.122,17.976,0.0,3.362,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.066,5.134,0.0,0.728,0.0,9.318,-7.801,-2.489,0.0,-0.063,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.123,-3.782,-0.162,0.0,3.578,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,31719.0,31719.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.432,42.432,42.432,42.432,0.0,0.0,0.0,0.0,0.0,0.0,8.963,0.53,0.08,0.003,2.59,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,0.083,13.77,9.071,0.615,0.0,0.0,0.0,0.0,4957.1,3513.2,4957.1,23.91,17.735,0.0,3.382,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.088,0.0,0.728,0.0,8.822,-7.801,-2.489,0.0,-0.032,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.126,-3.78,-0.162,0.0,2.93,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.376,42.376,42.376,42.376,0.0,0.0,0.0,0.0,0.0,0.0,9.02,0.527,0.082,0.003,2.486,0.106,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,0.086,14.073,9.071,0.615,0.0,0.0,0.0,0.0,4973.9,3850.5,4973.9,23.91,17.728,0.0,3.377,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.088,0.0,0.728,0.0,8.977,-7.801,-2.489,0.0,-0.046,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.246,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.046,50.046,50.046,50.046,0.0,0.0,0.0,0.0,0.0,0.0,9.942,0.736,5.75,0.329,3.038,0.099,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.432,6.079,14.045,9.071,0.615,0.0,0.0,0.0,0.0,8197.5,3760.1,8197.5,23.907,17.785,0.0,3.363,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,5.275,0.0,0.728,0.0,9.101,-7.801,-2.489,0.0,-0.044,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.218,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.334,42.334,42.334,42.334,0.0,0.0,0.0,0.0,0.0,0.0,8.981,0.529,0.079,0.003,2.483,0.107,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,0.082,14.079,9.071,0.615,0.0,0.0,0.0,0.0,4957.2,3847.5,4957.2,23.91,17.727,0.0,3.382,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.087,0.0,0.728,0.0,8.821,-7.801,-2.489,0.0,-0.046,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.781,-0.162,0.0,3.252,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,40.985,40.985,40.985,40.985,0.0,0.0,0.0,0.0,0.0,0.0,8.101,0.295,0.239,0.01,2.068,0.118,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.066,0.249,13.999,9.071,0.615,0.0,0.0,166.5,0.167,9708.8,4504.3,9708.8,30.304,19.789,0.0,3.459,3.654,0.515,7.546,0.639,10.145,-12.62,0.0,0.0,0.0,8.28,-0.063,4.983,0.0,0.732,0.0,7.779,-7.8,-2.489,0.0,-0.147,-0.463,-0.052,2.773,-0.025,-1.354,11.734,0.0,0.0,0.0,-6.209,-0.058,-1.105,-3.619,-0.168,0.0,3.042,7.781,2.018,1354.7,998.0,11171.7,2563.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.206,42.206,42.206,42.206,0.0,0.0,0.0,0.0,0.0,0.0,9.568,0.166,0.032,0.002,2.172,0.115,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.301,0.033,13.766,9.071,0.615,0.0,0.0,23.0,1.0,5178.5,4008.1,5178.5,26.095,19.032,0.0,3.412,3.642,0.512,7.515,0.631,10.095,-12.697,0.0,0.0,0.0,8.308,-0.065,5.007,0.004,0.728,0.0,8.172,-7.801,-2.489,0.0,-0.032,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.126,-3.775,-0.162,0.0,2.933,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,72000.0,72000.0,72000.0,6.8,91.76,38248.0,14048.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,32181.0,18428.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,40.743,40.743,40.743,40.743,0.0,0.0,0.0,0.0,0.0,0.0,7.962,0.271,0.21,0.01,2.023,0.117,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.219,13.769,9.071,0.615,0.0,0.0,156.0,2.0,5568.4,3148.4,5568.4,24.296,17.734,0.0,3.427,3.632,0.511,7.484,0.628,10.063,-12.708,0.0,0.0,0.0,8.267,-0.063,4.992,0.007,0.727,0.0,7.573,-7.804,-2.49,0.0,-0.03,-0.439,-0.048,2.746,-0.019,-1.33,11.706,0.0,0.0,0.0,-6.237,-0.059,-1.126,-3.774,-0.162,0.0,2.928,7.777,2.017,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-air-to-air-heat-pump-var-speed.xml,40.908,40.908,40.908,40.908,0.0,0.0,0.0,0.0,0.0,0.0,8.068,0.266,0.278,0.013,2.019,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.664,0.291,13.77,9.071,0.615,0.0,0.0,0.0,0.0,5637.1,3148.5,5637.1,23.957,17.735,0.0,3.433,3.639,0.512,7.509,0.63,10.089,-12.691,0.0,0.0,0.0,8.295,-0.067,5.008,0.0,0.728,0.0,7.54,-7.8,-2.489,0.0,-0.033,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.126,-3.78,-0.162,0.0,2.93,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-autosize-sizing-controls.xml,49.728,49.728,42.151,42.151,7.577,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.045,0.452,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.008,0.0,8.629,16.197,0.647,0.0,0.0,0.0,0.0,2485.0,3558.2,3558.2,17.077,14.804,0.0,2.851,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.528,-0.057,3.508,0.0,0.573,0.0,1.49,-8.608,-2.465,0.0,-0.08,-0.54,-0.062,2.449,-0.05,-1.666,11.85,0.0,0.0,0.0,-7.412,-0.057,-1.208,-6.539,-0.183,0.0,1.514,8.945,2.042,2180.8,1715.9,21140.4,3685.8,0.0,31990.0,31130.0,0.0,0.0,100.0,31990.0,9074.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.0,2061.0,4402.0,24018.0,6673.0,7422.0,0.0,318.0,951.0,0.0,0.0,0.0,2714.0,790.0,5150.0,2353.0,420.0,733.0,1200.0
-base-hvac-autosize.xml,59.352,59.352,35.56,35.56,23.791,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.219,0.797,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.899,9.071,0.615,0.0,0.0,0.0,0.0,2052.9,3847.1,3847.1,23.514,18.914,0.0,3.525,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.959,0.0,0.728,0.0,5.124,-7.8,-2.489,0.0,-0.051,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.116,-3.78,-0.162,0.0,3.05,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,32811.0,21848.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-coal-only.xml,50.537,50.537,30.458,30.458,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1975.9,1785.9,1975.9,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-elec-only.xml,49.292,49.292,49.292,49.292,0.0,0.0,0.0,0.0,0.0,0.0,18.955,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5998.2,1785.9,5998.2,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-gas-central-ac-1-speed.xml,56.009,56.009,35.658,35.658,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,4.24,1.111,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,13.688,9.071,0.615,0.0,0.0,0.0,0.0,2008.6,3946.6,3946.6,16.778,18.316,0.0,3.737,3.636,0.512,7.501,0.629,10.082,-12.691,0.0,0.0,0.0,8.282,-0.066,4.807,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,-0.041,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.118,-3.779,-0.162,0.0,2.832,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-gas-only-pilot.xml,55.486,55.486,30.36,30.36,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1958.4,1785.9,1958.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-gas-only.xml,50.53,50.53,30.36,30.36,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1958.4,1785.9,1958.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-oil-only.xml,50.537,50.537,30.458,30.458,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1975.9,1785.9,1975.9,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-propane-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1954.4,1785.9,1954.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1954.4,1785.9,1954.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-1-speed-autosize-factor.xml,34.979,34.979,34.979,34.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.933,1.015,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.281,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3333.2,3333.2,0.0,15.592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.15,-3.654,-0.163,0.0,1.736,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,37142.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-1-speed-seer2.xml,35.239,35.239,35.239,35.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,1.079,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3567.4,3567.4,0.0,18.008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.141,-3.655,-0.163,0.0,2.761,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-1-speed.xml,35.251,35.251,35.251,35.251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.142,1.079,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3573.7,3573.7,0.0,18.008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.141,-3.655,-0.163,0.0,2.761,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-2-speed.xml,33.704,33.704,33.704,33.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.008,0.666,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3128.1,3128.1,0.0,18.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.068,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.137,-3.655,-0.163,0.0,3.136,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.206,34.206,34.206,34.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.832,0.343,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.932,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,4187.1,4187.1,0.0,18.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,0.0,0.0,0.0,0.0,0.0,0.0,-0.131,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.135,-3.663,-0.163,0.0,4.486,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20969.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.288,33.288,33.288,33.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.148,0.11,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.807,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3539.6,3539.6,0.0,17.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.066,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.149,-3.658,-0.163,0.0,3.325,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,32.92,32.92,32.92,32.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.639,0.251,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.514,9.071,0.666,0.0,0.0,0.0,2.0,1974.9,3289.5,3289.5,0.0,20.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.445,-0.048,2.731,-0.026,-1.374,11.844,0.0,0.0,0.0,-6.848,-0.065,-1.141,-3.661,-0.163,0.0,4.05,7.903,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-only-var-speed.xml,32.916,32.916,32.916,32.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.636,0.25,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.519,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2930.3,2930.3,0.0,18.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,0.0,0.0,0.0,-0.107,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.14,-3.66,-0.163,0.0,4.057,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.427,47.427,47.427,47.427,0.0,0.0,0.0,0.0,0.0,0.0,9.798,1.796,0.299,0.03,4.24,1.111,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.029,0.329,13.689,9.071,0.615,0.0,0.0,0.0,0.0,7248.1,3946.7,7248.1,24.931,18.317,0.0,3.491,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.146,0.0,0.728,0.0,5.704,-7.8,-2.489,0.0,-0.04,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.118,-3.78,-0.162,0.0,2.832,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2034.7,3107.2,3107.2,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.084,52.084,41.382,41.382,10.702,0.0,0.0,0.0,0.0,0.0,5.489,0.519,0.0,0.931,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,11.097,12.673,9.071,0.615,0.0,0.0,0.0,0.0,3486.9,3688.3,3688.3,23.912,15.915,0.0,3.466,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,5.188,0.0,0.728,0.0,6.196,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.858,54.858,40.342,40.342,14.516,0.0,0.0,0.0,0.0,0.0,4.141,0.366,0.0,1.391,3.304,0.988,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.396,15.181,12.673,9.071,0.615,0.0,0.0,0.0,0.0,3333.7,3688.3,3688.3,23.91,15.915,0.0,3.432,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,5.289,0.0,0.728,0.0,6.984,-7.8,-2.489,0.0,0.01,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.127,-3.778,-0.162,0.0,1.792,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.237,52.237,37.319,37.319,14.918,0.0,0.0,0.0,0.0,0.0,3.12,0.2,0.0,1.043,2.208,0.596,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.738,15.216,12.9,9.071,0.615,0.0,0.0,0.0,0.0,2762.3,3238.8,3238.8,23.909,16.808,0.0,3.42,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.297,-0.067,5.299,0.0,0.728,0.0,7.327,-7.8,-2.489,0.0,0.001,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.778,-0.162,0.0,2.021,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,51.999,51.999,36.95,36.95,15.049,0.0,0.0,0.0,0.0,0.0,3.489,0.04,0.0,1.137,2.019,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.694,15.433,13.77,9.071,0.615,0.0,0.0,0.0,0.0,2723.6,3148.5,3148.5,23.953,17.735,0.0,3.388,3.639,0.512,7.51,0.63,10.091,-12.691,0.0,0.0,0.0,8.298,-0.067,5.304,0.0,0.728,0.0,8.311,-7.8,-2.489,0.0,-0.033,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.126,-3.78,-0.162,0.0,2.93,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.622,47.622,35.903,35.903,11.719,0.0,0.0,0.0,0.0,0.0,3.073,0.013,0.0,0.545,2.076,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,11.678,11.895,9.071,0.615,0.0,0.0,0.0,0.0,2607.6,2863.5,2863.5,19.184,14.06,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.066,4.863,0.0,0.728,0.0,3.125,-7.8,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.777,-0.162,0.0,0.997,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-area-fractions.xml,93.747,93.747,46.171,46.171,47.576,0.0,0.0,0.0,0.0,0.0,0.0,0.62,0.0,0.0,7.796,1.605,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,28.471,8.985,0.613,0.0,0.0,6.0,44.0,2472.5,5246.0,5246.0,49.16,36.136,0.0,3.201,7.884,1.072,7.901,0.668,20.507,-25.256,0.0,0.0,0.0,9.019,-0.126,11.283,0.0,0.746,0.0,20.137,-9.657,-3.531,0.0,-0.343,-0.977,-0.092,2.724,-0.015,-1.928,23.309,0.0,0.0,0.0,-6.356,-0.114,-2.37,-7.543,-0.157,0.0,10.34,9.512,2.837,1354.7,998.0,11171.5,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,72022.0,33245.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,86666.0,64999.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0
-base-hvac-ducts-area-multipliers.xml,57.919,57.919,35.357,35.357,22.562,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.072,0.761,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,13.297,9.071,0.615,0.0,0.0,0.0,0.0,2048.9,3724.2,3724.2,22.131,17.677,0.0,3.567,3.637,0.512,7.506,0.629,10.085,-12.69,0.0,0.0,0.0,8.288,-0.066,4.931,0.0,0.728,0.0,3.967,-7.798,-2.488,0.0,-0.023,-0.441,-0.049,2.748,-0.02,-1.329,11.724,0.0,0.0,0.0,-6.241,-0.062,-1.12,-3.778,-0.162,0.0,2.428,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32023.0,7823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19430.0,5678.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-buried.xml,56.241,56.241,35.128,35.128,21.112,0.0,0.0,0.0,0.0,0.0,0.0,0.348,0.0,0.0,3.904,0.724,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.763,0.0,12.513,9.071,0.615,0.0,0.0,0.0,0.0,2043.7,3457.1,3457.1,20.028,15.248,0.0,3.615,3.637,0.512,7.504,0.629,10.084,-12.69,0.0,0.0,0.0,8.286,-0.066,4.921,0.0,0.728,0.0,2.562,-7.798,-2.488,0.0,0.007,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.122,-3.779,-0.162,0.0,1.622,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29178.0,4978.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16405.0,2652.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-defaults.xml,55.658,55.658,40.532,40.532,15.126,0.0,0.0,0.0,0.0,0.0,4.655,0.393,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.953,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3014.1,3821.1,3821.1,18.702,12.093,0.0,3.737,3.636,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.281,-0.066,4.906,0.0,0.728,0.0,1.663,-7.8,-2.489,0.0,0.058,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.77,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,42344.0,24000.0,0.0,6.8,91.76,29966.0,4589.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-effective-rvalue.xml,58.7,58.7,35.477,35.477,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.0,13.609,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3778.6,3778.6,22.812,18.183,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.597,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.752,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32806.0,8606.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19789.0,6036.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-leakage-cfm50.xml,58.781,58.781,35.491,35.491,23.29,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.172,0.783,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.826,0.0,13.8,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3894.5,3894.5,23.039,19.275,0.0,3.555,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.906,0.0,0.728,0.0,4.704,-7.8,-2.489,0.0,-0.02,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.135,-3.779,-0.162,0.0,2.972,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35063.0,10863.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21981.0,8228.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ducts-leakage-percent.xml,59.951,59.951,35.667,35.667,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.301,0.813,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.748,0.0,14.236,9.071,0.615,0.0,0.0,0.0,0.0,2054.4,3943.2,3943.2,24.06,19.69,0.0,3.508,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,4.944,0.0,0.728,0.0,5.622,-7.8,-2.489,0.0,-0.065,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.118,-3.781,-0.162,0.0,3.404,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33320.0,9120.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22475.0,8722.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-elec-resistance-only.xml,47.263,47.263,47.263,47.263,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5891.0,1785.9,5891.0,16.762,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-evap-cooler-furnace-gas.xml,55.364,55.364,31.596,31.596,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,0.0,0.826,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2044.2,2173.5,2173.5,23.735,12.103,0.0,3.518,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.989,0.0,0.728,0.0,5.299,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-evap-cooler-only-ducted.xml,30.897,30.897,30.897,30.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.867,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.297,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2060.8,2060.8,0.0,14.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.14,-3.651,-0.163,0.0,0.708,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16243.0,2490.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-evap-cooler-only.xml,30.833,30.833,30.833,30.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2033.1,2033.1,0.0,11.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-fireplace-wood-only.xml,52.84,52.84,30.205,30.205,0.0,0.0,0.0,22.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.3,1806.9,1931.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,25377.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-floor-furnace-propane-only.xml,57.794,57.794,30.205,30.205,0.0,0.0,27.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.3,1806.9,1931.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-coal-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,0.0,0.0,0.0,23.561,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-elec-central-ac-1-speed.xml,56.847,56.847,56.847,56.847,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,7710.2,3779.1,7710.2,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-elec-only.xml,52.938,52.938,52.938,52.938,0.0,0.0,0.0,0.0,0.0,0.0,22.119,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,8063.9,1786.0,8063.9,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-central-ac-2-speed.xml,57.463,57.463,34.236,34.236,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,3.056,0.645,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.987,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3497.1,3497.1,22.816,18.899,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.054,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.114,-3.779,-0.162,0.0,3.135,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,56.719,56.719,33.492,33.492,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,2.692,0.265,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,14.928,9.071,0.615,0.0,0.0,0.0,5.0,2051.1,3607.4,3607.4,22.816,20.749,0.0,3.545,3.638,0.512,7.504,0.629,10.081,-12.703,0.0,0.0,0.0,8.295,-0.064,4.936,0.003,0.728,0.0,4.594,-7.803,-2.49,0.0,-0.098,-0.44,-0.049,2.747,-0.02,-1.333,11.71,0.0,0.0,0.0,-6.234,-0.06,-1.118,-3.783,-0.162,0.0,4.132,7.779,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-central-ac-var-speed.xml,56.711,56.711,33.484,33.484,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,2.688,0.261,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,14.936,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3291.3,3291.3,22.816,18.627,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.098,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.117,-3.784,-0.162,0.0,4.138,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-only-autosize-factor.xml,52.964,52.964,30.783,30.783,22.181,0.0,0.0,0.0,0.0,0.0,0.0,0.576,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2036.1,1786.0,2036.1,21.995,0.0,0.0,3.571,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.138,-0.07,4.929,0.0,0.728,0.0,3.964,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,45936.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-only-detailed-setpoints.xml,38.639,38.639,30.316,30.316,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,0.0,9.071,0.636,0.0,0.0,0.0,0.0,1987.1,1804.8,1987.1,18.088,0.0,0.0,2.809,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.498,0.0,0.566,0.0,1.828,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-only-pilot.xml,59.275,59.275,30.819,30.819,28.456,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-only.xml,54.38,54.38,30.819,30.819,23.561,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-gas-room-ac.xml,59.871,59.871,36.102,36.102,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.618,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,0.0,10.915,9.071,0.615,0.0,0.0,0.0,0.0,2044.2,3821.2,3821.2,23.735,12.094,0.0,3.518,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.989,0.0,0.728,0.0,5.299,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-oil-only.xml,54.38,54.38,30.819,30.819,0.0,23.561,0.0,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-propane-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,23.561,0.0,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-wood-only.xml,54.38,54.38,30.819,30.819,0.0,0.0,0.0,23.561,0.0,0.0,0.0,0.613,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.289,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2043.5,1786.0,2043.5,23.735,0.0,0.0,3.522,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.989,0.0,0.728,0.0,5.254,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-furnace-x3-dse.xml,59.43,59.43,36.496,36.496,22.934,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2039.1,3107.2,3107.2,16.929,12.093,0.0,3.774,3.672,0.517,7.576,0.635,10.182,-12.817,0.0,0.0,0.0,8.363,-0.067,4.854,0.0,0.735,0.0,0.0,-7.876,-2.513,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.761,33.761,33.761,33.761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.889,0.842,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2936.6,2936.6,0.0,15.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.008,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.149,-3.654,-0.163,0.0,1.886,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,40.831,40.831,40.831,40.831,0.0,0.0,0.0,0.0,0.0,0.0,6.435,0.645,0.0,0.0,2.658,0.945,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.437,0.0,13.212,9.071,0.616,0.0,0.0,0.0,0.0,3354.7,2901.4,3354.7,22.939,15.862,0.0,3.534,3.597,0.506,7.824,0.621,9.976,-12.716,0.0,0.0,0.0,11.631,-0.066,4.907,0.0,0.726,0.0,3.875,-7.816,-2.492,0.0,0.016,-0.43,-0.047,3.183,-0.017,-1.292,11.697,0.0,0.0,0.0,-6.264,-0.063,-1.114,-3.767,-0.159,0.0,1.878,7.763,2.015,1354.7,998.0,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,33134.0,7548.0,7508.0,0.0,575.0,7249.0,0.0,0.0,3384.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ground-to-air-heat-pump-heating-only.xml,36.915,36.915,36.915,36.915,0.0,0.0,0.0,0.0,0.0,0.0,5.803,0.906,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,3492.4,1786.0,3492.4,22.62,0.0,0.0,3.568,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.139,-0.07,4.953,0.0,0.728,0.0,3.991,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ground-to-air-heat-pump.xml,40.254,40.254,40.254,40.254,0.0,0.0,0.0,0.0,0.0,0.0,5.708,0.582,0.0,0.0,2.883,0.929,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,12.73,9.071,0.615,0.0,0.0,0.0,0.0,3392.2,3066.8,3392.2,21.927,15.9,0.0,3.586,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.288,-0.067,4.905,0.0,0.728,0.0,3.445,-7.8,-2.489,0.0,0.008,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.778,-0.162,0.0,1.848,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.619,48.619,48.619,48.619,0.0,0.0,0.0,0.0,0.0,0.0,12.439,0.713,0.613,0.019,4.021,0.662,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.664,0.632,13.159,9.071,0.615,0.0,0.0,0.0,0.0,7012.6,3929.7,7012.6,24.45,16.933,0.0,3.467,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.293,-0.067,5.121,0.0,0.728,0.0,6.39,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.78,-0.162,0.0,2.294,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.049,44.049,44.049,44.049,0.0,0.0,0.0,0.0,0.0,0.0,9.458,0.584,0.551,0.017,2.74,0.546,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.887,0.569,13.463,9.071,0.615,0.0,0.0,0.0,0.0,6999.7,3529.8,6999.7,24.446,18.106,0.0,3.421,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,5.165,0.0,0.728,0.0,7.609,-7.8,-2.489,0.0,-0.027,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.779,-0.162,0.0,2.603,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.711,45.711,45.711,45.711,0.0,0.0,0.0,0.0,0.0,0.0,11.293,0.541,0.263,0.008,3.294,0.161,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.271,14.746,9.071,0.615,0.0,0.0,0.0,0.0,5724.4,4462.9,5724.4,24.444,18.252,0.0,3.332,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,5.168,0.0,0.728,0.0,10.086,-7.801,-2.489,0.0,-0.082,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.122,-3.784,-0.162,0.0,3.947,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,44.003,44.003,44.003,44.003,0.0,0.0,0.0,0.0,0.0,0.0,10.227,0.357,0.571,0.02,2.532,0.145,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.222,0.591,14.493,9.071,0.615,0.0,0.0,0.0,0.0,6292.3,3507.5,6292.3,24.484,18.234,0.0,3.374,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.102,0.0,0.728,0.0,9.055,-7.801,-2.489,0.0,-0.069,-0.439,-0.048,2.749,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.123,-3.782,-0.162,0.0,3.681,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.655,60.655,36.21,36.21,24.445,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,5.042,0.721,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,14.414,9.071,0.615,0.0,0.0,0.0,2.0,2034.7,3987.6,3987.6,23.865,18.367,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.649,-7.796,-2.488,0.0,-0.077,-0.441,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.241,-0.061,-1.114,-3.782,-0.162,0.0,3.583,7.786,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.193,59.193,34.753,34.753,24.441,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,3.699,0.609,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.777,0.0,14.826,9.071,0.615,0.0,0.0,0.0,2.0,2034.6,3690.7,3690.7,23.859,18.587,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.644,-7.796,-2.488,0.0,-0.097,-0.44,-0.049,2.75,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.061,-1.109,-3.781,-0.162,0.0,4.002,7.786,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.499,58.499,34.059,34.059,24.44,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,3.262,0.351,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.776,0.0,15.639,9.071,0.615,0.0,0.0,0.0,0.0,2034.6,3573.3,3573.3,23.859,19.022,0.0,3.508,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.289,-0.065,4.95,0.0,0.728,0.0,5.644,-7.796,-2.488,0.0,-0.138,-0.44,-0.048,2.75,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.24,-0.061,-1.113,-3.788,-0.162,0.0,4.868,7.786,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-furnace-gas-only.xml,55.779,55.779,30.683,30.683,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2018.2,1786.0,2018.2,25.062,0.0,0.0,3.476,3.641,0.512,7.491,0.63,10.094,-12.691,0.0,0.0,0.0,8.141,-0.069,5.011,0.0,0.728,0.0,6.546,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-ground-to-air-heat-pump.xml,42.473,42.473,42.473,42.473,0.0,0.0,0.0,0.0,0.0,0.0,7.367,0.594,0.0,0.0,3.474,0.885,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,0.0,13.239,9.071,0.615,0.0,0.0,0.0,0.0,3671.6,3299.6,3671.6,22.949,17.032,0.0,3.549,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.942,0.0,0.728,0.0,4.486,-7.8,-2.489,0.0,-0.017,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.123,-3.779,-0.162,0.0,2.374,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31719.0,7519.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.466,33.466,33.466,33.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.244,0.191,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3047.3,3047.3,0.0,14.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.157,-3.657,-0.163,0.0,1.734,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.552,41.552,41.552,41.552,0.0,0.0,0.0,0.0,0.0,0.0,8.439,0.22,0.133,0.005,2.512,0.091,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,0.138,12.172,9.071,0.615,0.0,0.0,0.0,0.0,4873.5,3229.1,4873.5,19.336,14.183,0.0,3.596,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.833,0.0,0.728,0.0,3.395,-7.8,-2.489,0.0,0.041,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.778,-0.162,0.0,1.283,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-air-conditioner-only-ducted.xml,32.826,32.826,32.826,32.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.728,0.068,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.013,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2678.8,2678.8,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.019,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.157,-3.655,-0.163,0.0,1.472,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.216,33.216,33.216,33.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.133,0.052,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2752.8,2752.8,0.0,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,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,14890.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.572,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2769.6,2769.6,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.877,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2667.8,2667.8,0.0,11.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.094,32.094,32.094,32.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.02,0.044,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2499.9,2499.9,0.0,13.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.037,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.158,-3.652,-0.163,0.0,0.971,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,41.101,41.101,41.101,41.101,0.0,0.0,0.0,0.0,0.0,0.0,7.61,0.234,0.0,0.0,3.021,0.085,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.716,0.0,12.447,9.071,0.615,0.0,0.0,0.0,0.0,4121.3,3248.1,4121.3,19.307,14.146,0.0,3.589,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.837,0.0,0.728,0.0,3.629,-7.8,-2.489,0.0,0.03,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.135,-3.78,-0.162,0.0,1.57,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,26743.0,26743.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.55,40.55,40.55,40.55,0.0,0.0,0.0,0.0,0.0,0.0,7.324,0.157,0.0,0.0,2.882,0.035,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,12.224,9.071,0.615,0.0,0.0,0.0,0.0,4027.6,3111.5,4027.6,19.126,14.032,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.828,0.0,0.728,0.0,3.234,-7.8,-2.489,0.0,0.039,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.136,-3.778,-0.162,0.0,1.338,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,37.189,37.189,37.189,37.189,0.0,0.0,0.0,0.0,0.0,0.0,6.764,0.164,0.052,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.148,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.863,0.054,0.0,9.071,0.592,0.0,0.0,97.0,0.0,4116.0,1785.9,4116.0,19.491,0.0,0.0,3.607,3.636,0.512,7.477,0.629,10.082,-12.691,0.0,0.0,0.0,8.119,-0.07,4.829,0.0,0.728,0.0,2.975,-7.799,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.248,37.248,37.248,37.248,0.0,0.0,0.0,0.0,0.0,0.0,6.846,0.134,0.059,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.917,0.061,0.0,9.071,0.592,0.0,0.0,0.0,0.0,4354.4,1785.9,4354.4,19.362,0.0,0.0,3.612,3.64,0.512,7.488,0.63,10.094,-12.691,0.0,0.0,0.0,8.137,-0.07,4.835,0.0,0.728,0.0,2.963,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,39.267,39.267,39.267,39.267,0.0,0.0,0.0,0.0,0.0,0.0,6.837,0.102,0.054,0.001,2.075,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.085,0.056,11.894,9.071,0.615,0.0,0.0,100.0,0.0,4081.6,2863.5,4081.6,19.316,14.06,0.0,3.603,3.633,0.511,7.493,0.628,10.073,-12.691,0.0,0.0,0.0,8.27,-0.067,4.82,0.0,0.727,0.0,3.059,-7.799,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.244,-0.063,-1.135,-3.776,-0.162,0.0,0.997,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ducted.xml,39.337,39.337,39.337,39.337,0.0,0.0,0.0,0.0,0.0,0.0,6.918,0.084,0.061,0.002,2.076,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.063,11.895,9.071,0.615,0.0,0.0,0.0,0.0,4294.7,2863.5,4294.7,19.185,14.06,0.0,3.607,3.637,0.512,7.504,0.63,10.085,-12.691,0.0,0.0,0.0,8.287,-0.066,4.827,0.0,0.728,0.0,3.05,-7.8,-2.489,0.0,0.05,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.777,-0.162,0.0,0.997,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.078,39.078,39.078,39.078,0.0,0.0,0.0,0.0,0.0,0.0,5.983,0.131,0.393,0.0,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.393,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4413.1,3100.7,4413.1,16.762,12.092,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.849,45.849,36.508,36.508,9.341,0.0,0.0,0.0,0.0,0.0,3.616,0.049,0.0,0.282,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.365,7.754,10.83,9.071,0.615,0.0,0.0,2.0,0.0,2953.5,3118.8,3118.8,17.599,12.255,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.891,0.0,0.727,0.0,0.115,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,25150.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.532,45.532,36.311,36.311,9.221,0.0,0.0,0.0,0.0,0.0,3.418,0.044,0.0,0.278,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.574,7.655,10.914,9.071,0.615,0.0,0.0,1.0,0.0,2871.7,3100.7,3100.7,17.829,12.092,0.0,3.716,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.811,0.0,0.728,0.0,0.394,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,27132.0,2932.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.951,48.951,36.24,36.24,0.0,12.711,0.0,0.0,0.0,0.0,3.612,0.066,0.0,0.0,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.246,7.627,10.83,9.071,0.615,0.0,0.0,2.0,0.0,2953.5,3118.8,3118.8,17.317,12.255,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.887,0.0,0.727,0.0,0.0,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.901,38.901,38.901,38.901,0.0,0.0,0.0,0.0,0.0,0.0,6.784,0.073,0.0,0.0,1.886,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3886.0,2977.6,3886.0,16.761,12.09,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,24200.0,24200.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.04,0.0,0.0,1.887,0.003,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3944.1,3072.0,3944.1,16.761,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-mini-split-heat-pump-ductless.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-multiple.xml,67.866,67.866,52.604,52.604,7.554,3.811,3.896,0.0,0.0,0.0,14.492,0.932,0.277,0.011,6.199,0.543,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.725,0.288,18.302,9.071,0.615,0.0,0.0,0.0,9.0,6969.6,4418.8,6969.6,40.798,22.328,0.0,3.408,3.638,0.512,7.505,0.63,10.088,-12.711,0.0,0.0,0.0,8.308,-0.066,7.342,0.0,0.727,0.0,15.319,-7.812,-2.491,0.0,-0.118,-0.431,-0.047,2.776,-0.017,-1.299,11.701,0.0,0.0,0.0,-6.188,-0.062,-1.316,-3.741,-0.16,0.0,7.571,7.768,2.016,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37072.0,12872.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24874.0,11121.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-none.xml,20.452,20.452,20.452,20.452,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.542,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.496,0.335,0.0,0.0,0.0,0.0,1265.8,1194.4,1265.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,1354.7,998.0,8369.9,2062.4,0.0,0.0,0.0,0.0,63.32,89.06,2829.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,220.0,13263.0,0.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,306.0,3320.0,1259.0,0.0,459.0,800.0
-base-hvac-ptac-with-heating-electricity.xml,51.595,51.595,51.595,51.595,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3388.5,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ptac-with-heating-natural-gas.xml,55.897,55.897,34.387,34.387,21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,1931.3,3388.5,3388.5,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-ptac.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3030.3,3030.3,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-pthp-heating-capacity-17f.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-pthp.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-only-33percent.xml,31.83,31.83,31.83,31.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.489,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2330.4,2330.4,0.0,3.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015,-0.147,-0.016,0.901,-0.008,-0.452,3.911,0.0,0.0,0.0,-2.262,-0.022,-0.383,-1.203,-0.054,0.0,0.0,2.608,0.674,1354.7,998.0,11171.5,2563.5,0.0,0.0,8000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-only-ceer.xml,35.226,35.226,35.226,35.226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.195,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3461.5,3461.5,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-only-detailed-setpoints.xml,34.023,34.023,34.023,34.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.974,0.0,9.054,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.929,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.85,9.071,0.658,0.0,0.0,0.0,0.0,1924.2,3578.9,3578.9,0.0,10.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.617,-0.073,2.251,-0.068,-1.894,11.85,0.0,0.0,0.0,-7.585,-0.069,-1.298,-4.026,-0.195,0.0,0.0,7.922,2.042,1354.7,998.0,11171.6,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-only.xml,35.216,35.216,35.216,35.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3457.6,3457.6,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-with-heating.xml,52.692,52.692,52.692,52.692,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3821.1,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-room-ac-with-reverse-cycle.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-seasons.xml,58.48,58.48,35.436,35.436,23.044,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.131,0.774,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,13.475,9.071,0.615,0.0,0.0,0.0,0.0,2051.0,3440.9,3440.9,22.816,18.181,0.0,3.503,3.599,0.507,7.507,0.615,9.923,-12.591,0.0,0.0,0.0,8.214,-0.033,4.88,0.0,0.72,0.0,4.568,-7.689,-2.467,0.0,-0.075,-0.475,-0.053,2.763,-0.034,-1.479,11.822,0.0,0.0,0.0,-6.3,-0.029,-1.169,-3.798,-0.168,0.0,2.729,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-setpoints-daily-schedules.xml,57.514,57.514,34.887,34.887,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.682,0.685,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8,0.0,11.695,9.071,0.617,0.0,0.0,105.0,37.0,2071.1,3769.9,3769.9,34.895,20.609,0.0,3.502,3.568,0.501,7.484,0.605,9.792,-12.687,0.0,0.0,0.0,8.632,0.008,4.795,0.0,0.725,0.0,4.312,-7.752,-2.486,0.0,-0.044,-0.468,-0.053,2.705,-0.034,-1.489,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.178,-4.193,-0.17,0.0,2.156,7.825,2.022,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-setpoints-daily-setbacks.xml,56.954,56.954,35.032,35.032,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,3.814,0.711,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.44,0.0,12.268,9.071,0.617,0.0,0.0,0.0,5.0,2047.5,3739.1,3739.1,25.066,21.068,0.0,3.496,3.553,0.499,7.325,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.769,0.0,0.723,0.0,4.217,-7.768,-2.488,0.0,-0.031,-0.468,-0.053,2.647,-0.033,-1.492,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.164,-4.138,-0.172,0.0,2.315,7.808,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-setpoints.xml,41.703,41.703,33.546,33.546,8.157,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,2.866,0.474,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.634,0.0,8.338,9.071,0.649,0.0,0.0,0.0,0.0,2011.6,3386.7,3386.7,17.418,15.457,0.0,2.816,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.369,-0.059,3.482,0.0,0.566,0.0,1.589,-7.591,-2.465,0.0,-0.07,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.184,-6.334,-0.18,0.0,1.758,7.912,2.042,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-space-heater-gas-only.xml,47.262,47.262,30.207,30.207,17.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.2,1785.9,1931.2,16.762,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-stove-oil-only.xml,52.823,52.823,30.273,30.273,0.0,22.55,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1943.3,1806.9,1943.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-stove-wood-pellets-only.xml,52.823,52.823,30.273,30.273,0.0,0.0,0.0,0.0,22.55,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1943.3,1806.9,1943.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.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,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-undersized.xml,48.274,48.274,32.76,32.76,15.514,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2.062,0.342,9.031,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.01,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.526,0.0,6.245,9.071,0.634,0.0,0.0,3731.0,2465.0,1995.6,1985.7,2019.1,3.829,2.736,0.0,2.635,2.86,0.4,5.177,0.433,7.706,-12.831,0.0,0.0,0.0,4.479,-0.12,3.589,0.0,0.588,0.0,9.471,-7.791,-2.505,0.0,-0.341,-0.768,-0.096,1.698,-0.106,-2.359,11.582,0.0,0.0,0.0,-7.92,-0.06,-1.389,-5.999,-0.228,0.0,2.721,7.747,2.002,1354.7,998.0,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,29463.0,5263.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18152.0,4399.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-hvac-wall-furnace-elec-only.xml,47.61,47.61,47.61,47.61,0.0,0.0,0.0,0.0,0.0,0.0,17.404,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5986.5,1785.9,5986.5,16.762,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv
deleted file mode 100644
index bc874a40b0..0000000000
--- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv
+++ /dev/null
@@ -1,143 +0,0 @@
-HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)
-base-lighting-ceiling-fans-label-energy-use.xml,59.28,59.28,36.073,36.073,23.207,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.088,0.764,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.682,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.733,0.0,13.371,9.071,0.613,0.0,0.0,0.0,0.0,2038.7,3522.6,3522.6,22.816,18.078,0.0,3.545,3.638,0.512,7.504,0.63,10.088,-12.691,0.0,0.0,0.0,8.274,-0.067,4.937,0.0,0.728,0.0,4.596,-7.8,-2.489,0.0,-0.078,-0.488,-0.055,2.617,-0.032,-1.473,11.723,0.0,0.0,0.0,-6.441,-0.063,-1.157,-3.985,-0.17,0.0,2.672,8.468,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-ceiling-fans.xml,59.084,59.084,35.876,35.876,23.208,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.056,0.756,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,13.231,9.071,0.613,0.0,0.0,0.0,0.0,2038.7,3492.3,3492.3,22.816,17.998,0.0,3.545,3.638,0.512,7.504,0.63,10.088,-12.691,0.0,0.0,0.0,8.275,-0.067,4.937,0.0,0.728,0.0,4.597,-7.8,-2.489,0.0,-0.075,-0.487,-0.055,2.621,-0.031,-1.468,11.723,0.0,0.0,0.0,-6.434,-0.063,-1.156,-3.969,-0.17,0.0,2.653,8.311,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-holiday.xml,58.902,58.902,35.674,35.674,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.531,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2426.0,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-kwh-per-year.xml,60.403,60.403,39.067,39.067,21.336,0.0,0.0,0.0,0.0,0.0,0.0,0.352,0.0,0.0,4.382,0.835,9.013,0.0,0.0,7.673,0.0,0.512,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.981,0.0,14.566,9.071,0.614,0.0,0.0,0.0,0.0,2393.5,3877.8,3877.8,22.524,18.775,0.0,3.576,3.658,0.515,7.573,0.634,10.145,-12.66,0.0,0.0,0.0,8.378,-0.074,4.934,0.0,0.729,0.0,4.258,-7.788,-4.232,0.0,-0.077,-0.474,-0.053,2.656,-0.028,-1.42,11.736,0.0,0.0,0.0,-6.39,-0.07,-1.144,-3.966,-0.166,0.0,2.902,7.796,3.441,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-mixed.xml,58.882,58.882,35.655,35.655,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.512,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2063.1,3786.4,3786.4,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-none-ceiling-fans.xml,56.678,56.678,30.7,30.7,25.978,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.753,0.683,9.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.329,0.0,11.932,9.071,0.615,0.0,0.0,0.0,0.0,1609.4,3129.5,3129.5,23.228,17.142,0.0,3.502,3.61,0.508,7.419,0.624,10.017,-12.724,0.0,0.0,0.0,8.168,-0.06,4.946,0.0,0.726,0.0,5.091,-7.816,0.0,0.0,-0.018,-0.438,-0.048,2.761,-0.019,-1.325,11.712,0.0,0.0,0.0,-6.202,-0.056,-1.118,-3.697,-0.164,0.0,2.447,8.291,0.0,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-lighting-none.xml,56.298,56.298,30.3,30.3,25.998,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.856,0.708,9.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.348,0.0,12.303,9.071,0.617,0.0,0.0,0.0,0.0,1609.4,3091.0,3091.0,23.228,17.345,0.0,3.501,3.609,0.508,7.42,0.624,10.016,-12.724,0.0,0.0,0.0,8.183,-0.06,4.946,0.0,0.726,0.0,5.095,-7.816,0.0,0.0,0.022,-0.392,-0.042,2.888,-0.008,-1.186,11.712,0.0,0.0,0.0,-6.009,-0.055,-1.081,-3.513,-0.156,0.0,2.546,7.762,0.0,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-location-AMY-2012.xml,67.444,67.444,34.486,34.486,32.959,0.0,0.0,0.0,0.0,0.0,0.0,0.536,0.0,0.0,2.874,0.47,9.421,0.0,0.0,4.521,0.0,0.335,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,8.462,9.504,0.62,0.0,0.0,0.0,0.0,2056.4,2798.8,2798.8,23.331,14.874,0.0,4.263,4.38,0.622,9.797,0.805,12.563,-13.838,0.0,0.0,0.0,10.941,-0.087,5.417,0.0,0.771,0.0,6.647,-9.003,-2.868,0.0,0.014,-0.322,-0.039,1.646,-0.04,-1.617,9.904,0.0,0.0,0.0,-7.373,-0.078,-0.853,-2.651,-0.095,0.0,1.848,6.613,1.652,1358.5,1000.7,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,31211.0,8359.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4406.0,19561.0,5889.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,617.0,3320.0,0.0,0.0,0.0,0.0
-base-location-baltimore-md.xml,39.527,39.527,29.537,29.537,9.99,0.0,0.0,0.0,0.0,0.0,0.0,0.041,0.0,0.0,4.939,0.991,8.518,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.131,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.228,0.0,16.532,8.4,0.66,0.0,0.0,0.0,0.0,1627.2,2631.9,2631.9,13.942,14.583,0.0,3.476,3.334,0.0,0.0,0.719,9.022,-8.613,0.0,0.0,3.288,0.0,-0.347,2.119,0.0,0.802,0.0,1.571,-5.055,-1.293,0.0,-0.093,-0.578,0.0,0.0,0.006,0.183,11.945,0.0,0.0,-0.859,0.0,-0.34,-0.399,-2.242,-0.201,0.0,1.534,6.386,1.352,1354.7,998.0,10815.2,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,19667.0,5821.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2260.0,16134.0,2044.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2446.0,364.0,3320.0,1882.0,594.0,488.0,800.0
-base-location-capetown-zaf.xml,27.572,27.572,27.358,27.358,0.215,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.829,0.897,7.513,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.201,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.199,0.0,14.827,7.298,0.693,0.0,0.0,0.0,0.0,2009.6,2282.8,2323.8,4.457,12.926,0.0,1.563,1.328,0.0,0.0,0.575,4.529,-5.824,0.0,0.0,2.605,0.0,-1.138,0.758,0.0,0.328,0.0,0.031,-3.996,-0.714,0.0,-0.838,-1.556,0.0,0.0,-0.435,-0.296,17.619,0.0,0.0,-4.045,0.0,-1.139,-0.726,-3.446,-0.387,0.0,0.938,7.516,1.932,1354.7,998.0,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13422.0,5576.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1102.0,14478.0,2237.0,5856.0,0.0,185.0,149.0,0.0,333.0,0.0,2212.0,186.0,3320.0,847.0,27.0,20.0,800.0
-base-location-dallas-tx.xml,34.458,34.458,32.43,32.43,2.027,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,8.767,1.83,6.705,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.204,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.87,0.0,30.47,6.557,0.575,0.0,0.0,0.0,0.0,1781.8,2919.9,2919.9,10.032,15.523,0.0,1.719,1.599,0.0,0.0,0.364,4.633,-5.076,0.0,0.0,0.0,1.195,-0.338,1.011,0.0,0.385,0.0,0.051,-3.122,-0.765,0.0,0.562,0.007,0.0,0.0,0.197,2.736,17.095,0.0,0.0,0.0,1.935,-0.333,-0.225,-2.346,-0.089,0.0,0.353,8.967,1.881,1354.7,998.0,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20410.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15287.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0
-base-location-detailed.xml,58.672,58.672,35.52,35.52,23.152,0.0,0.0,0.0,0.0,0.0,0.0,0.425,0.0,0.0,4.161,0.782,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,13.612,9.071,0.615,0.0,0.0,0.0,0.0,2058.8,3778.8,3778.8,22.82,18.185,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.924,0.0,0.728,0.0,4.585,-7.8,-2.489,0.0,-0.036,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.115,-3.781,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32509.0,8476.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4532.0,19701.0,5958.0,7050.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,608.0,3320.0,107.0,0.0,-693.0,800.0
-base-location-duluth-mn.xml,70.42,70.42,28.716,28.716,41.704,0.0,0.0,0.0,0.0,0.0,0.0,0.444,0.0,0.0,2.257,0.321,11.436,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.342,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.81,0.0,5.37,11.393,0.837,0.0,0.0,0.0,0.0,1652.2,2535.4,2535.4,26.749,11.802,0.0,7.025,7.023,0.0,0.0,1.59,19.63,-13.199,0.0,0.0,10.121,0.0,-0.372,6.605,0.0,0.0,0.0,7.21,-5.309,-1.891,0.0,-0.426,-0.778,0.0,0.0,-0.088,-0.816,8.039,0.0,0.0,-1.541,0.0,-0.372,-0.507,-1.617,0.0,0.0,0.375,2.502,0.755,1354.7,998.0,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31470.0,6398.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3881.0,12047.0,63.0,5891.0,0.0,156.0,64.0,0.0,344.0,0.0,2100.0,108.0,3320.0,1212.0,246.0,166.0,800.0
-base-location-helena-mt.xml,78.338,78.338,35.067,35.067,43.271,0.0,0.0,0.0,0.0,0.0,0.0,1.06,0.0,0.0,2.377,0.364,10.161,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.038,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.869,0.0,6.329,10.294,0.625,0.0,0.0,0.0,0.0,2138.4,2966.1,2966.1,29.659,14.494,0.0,5.347,5.452,0.772,11.482,1.046,15.436,-15.408,0.0,0.0,0.0,13.797,-0.201,8.099,0.0,1.202,0.0,7.587,-10.848,-3.32,0.0,0.001,-0.258,-0.028,1.29,0.009,-0.479,8.37,0.0,0.0,0.0,-6.066,-0.195,-0.676,-2.493,-0.122,0.0,1.202,4.71,1.187,1354.7,998.0,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,40682.0,10041.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2977.0,2684.0,6529.0,19300.0,6028.0,6852.0,0.0,184.0,165.0,0.0,0.0,0.0,2207.0,545.0,3320.0,249.0,0.0,-551.0,800.0
-base-location-honolulu-hi.xml,35.417,35.417,35.417,35.417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.633,2.839,4.744,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.285,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.571,4.496,0.55,0.0,0.0,0.0,0.0,2055.7,2194.8,2415.4,0.0,13.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,1.252,0.768,0.0,0.0,0.306,5.327,20.458,0.0,0.0,0.0,6.063,-0.004,0.02,-2.06,0.063,0.0,0.726,12.146,2.646,1354.7,998.0,8369.7,2062.3,0.0,12000.0,24000.0,0.0,63.32,89.06,3421.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,220.0,13294.0,32.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,306.0,3320.0,1838.0,580.0,459.0,800.0
-base-location-miami-fl.xml,34.659,34.659,34.659,34.659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.936,2.655,4.874,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.279,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.163,4.632,0.552,0.0,0.0,0.0,0.0,2034.7,2569.8,2569.8,0.0,13.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,0.618,0.0,0.0,0.315,4.571,19.646,0.0,0.0,0.0,5.632,-0.004,-0.106,-2.841,-0.0,0.0,0.671,12.141,2.646,1354.7,998.0,8452.8,2082.8,0.0,12000.0,24000.0,0.0,51.62,90.68,8619.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,657.0,13407.0,-219.0,6605.0,0.0,279.0,507.0,0.0,0.0,0.0,2565.0,350.0,3320.0,2531.0,954.0,776.0,800.0
-base-location-phoenix-az.xml,38.427,38.427,38.423,38.423,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.24,2.904,5.099,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.263,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,52.682,4.866,0.557,0.0,0.0,0.0,0.0,2365.6,3621.9,3621.9,1.046,18.988,0.0,0.711,0.52,0.0,0.0,0.208,2.307,-2.036,0.0,0.0,0.0,-0.1,-0.498,0.372,0.0,0.131,0.0,-0.0,-1.432,-0.297,0.0,1.798,1.434,0.0,0.0,0.813,7.016,24.03,0.0,0.0,0.0,7.07,-0.51,0.464,-3.212,0.129,0.0,0.945,10.698,2.349,1354.7,998.0,8260.6,2035.4,0.0,24000.0,24000.0,0.0,41.36,108.14,13290.0,1051.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1053.0,18179.0,710.0,8845.0,0.0,401.0,975.0,0.0,0.0,0.0,3028.0,899.0,3320.0,624.0,0.0,-176.0,800.0
-base-location-portland-or.xml,37.8,37.8,27.188,27.188,10.611,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,2.711,0.495,8.935,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.087,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.803,0.0,8.285,8.724,0.78,0.0,0.0,0.0,0.0,1622.4,2828.7,2828.7,9.005,14.888,0.0,3.414,3.26,0.0,0.0,0.743,8.714,-8.283,0.0,0.0,6.207,0.0,-0.453,1.59,0.0,0.809,0.0,1.816,-6.547,-1.625,0.0,-0.267,-0.726,0.0,0.0,0.007,-0.534,10.218,0.0,0.0,-2.789,0.0,-0.45,-0.363,-2.834,-0.24,0.0,0.539,4.85,1.021,1354.7,998.0,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17793.0,6473.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1688.0,15756.0,2411.0,6585.0,0.0,210.0,243.0,0.0,429.0,0.0,2304.0,254.0,3320.0,959.0,90.0,69.0,800.0
-base-mechvent-balanced.xml,79.193,79.193,37.332,37.332,41.861,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,3.982,0.728,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.054,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.207,0.0,12.62,9.071,0.621,0.0,0.0,0.0,0.0,2158.1,3827.0,3827.0,32.058,21.218,0.0,3.509,3.716,0.523,7.42,0.655,10.383,-12.834,0.0,0.0,0.0,8.096,-0.129,5.162,0.0,15.091,0.0,7.923,-8.042,-2.554,0.0,0.165,-0.24,-0.02,3.024,0.037,-0.65,11.579,0.0,0.0,0.0,-5.927,-0.124,-0.862,-3.011,-3.481,0.0,2.746,7.526,1.953,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39253.0,8755.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10996.0,21501.0,6078.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2301.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-bath-kitchen-fans.xml,60.556,60.556,35.575,35.575,24.982,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,4.128,0.773,9.015,0.0,0.0,4.507,0.0,0.334,0.112,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.394,0.0,13.441,9.071,0.616,0.0,0.0,0.0,0.0,2054.5,3678.0,3678.0,25.149,19.957,0.0,3.537,3.637,0.512,7.503,0.629,10.079,-12.698,0.0,0.0,0.0,8.297,-0.061,4.524,0.0,2.474,0.0,4.924,-7.804,-2.49,0.0,-0.022,-0.427,-0.047,2.789,-0.017,-1.291,11.715,0.0,0.0,0.0,-6.173,-0.057,-0.997,-3.683,-0.672,0.0,2.737,7.776,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-mechvent-cfis-airflow-fraction-zero.xml,73.203,73.203,37.237,37.237,35.966,0.0,0.0,0.0,0.0,0.0,0.0,0.593,0.0,0.0,4.054,0.748,9.017,0.0,0.0,4.507,0.0,0.334,1.699,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.686,0.0,12.98,9.071,0.619,0.0,0.0,0.0,0.0,2082.2,3928.4,3928.4,28.937,20.156,0.0,3.482,3.658,0.515,7.478,0.637,10.169,-12.751,0.0,0.0,0.0,8.282,-0.077,1.603,0.0,13.89,0.0,6.898,-7.884,-2.508,0.0,0.063,-0.341,-0.034,2.959,0.008,-0.997,11.663,0.0,0.0,0.0,-5.919,-0.073,-0.252,-3.264,-3.171,0.0,2.773,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-cfis-dse.xml,74.214,74.214,38.308,38.308,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.841,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,10.309,9.071,0.619,0.0,0.0,0.0,0.0,2079.6,3207.2,3207.2,21.568,13.622,0.0,3.76,3.656,0.514,7.471,0.637,10.163,-12.751,0.0,0.0,0.0,8.27,-0.076,1.561,0.0,13.78,0.0,0.0,-7.884,-2.508,0.0,0.155,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.921,-0.072,-0.254,-3.257,-3.138,0.0,0.0,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28422.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,15082.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-cfis-evap-cooler-only-ducted.xml,33.603,33.603,33.603,33.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.871,9.083,0.0,0.0,4.507,0.0,0.334,2.757,0.0,0.0,0.0,1.826,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,9.071,0.689,0.0,0.0,0.0,0.0,2018.0,2374.4,2374.4,0.0,16.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,-0.342,-0.034,3.021,0.001,-1.054,11.85,0.0,0.0,0.0,-6.55,-0.062,-0.281,-3.051,-3.031,0.0,0.495,7.894,2.042,1354.7,998.0,11171.6,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,28422.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,17588.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-cfis-supplemental-fan-exhaust.xml,71.055,71.055,35.881,35.881,35.174,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,0.0,3.959,0.726,9.019,0.0,0.0,4.507,0.0,0.334,0.476,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.944,0.0,12.591,9.071,0.62,0.0,0.0,0.0,0.0,2082.3,3644.9,3644.9,28.938,20.084,0.0,3.512,3.679,0.518,7.459,0.643,10.245,-12.798,0.0,0.0,0.0,8.229,-0.09,2.459,0.0,12.53,0.0,6.759,-7.956,-2.53,0.0,0.114,-0.289,-0.027,3.03,0.022,-0.827,11.615,0.0,0.0,0.0,-5.847,-0.086,-0.264,-3.086,-3.947,0.0,2.697,7.614,1.977,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-cfis-supplemental-fan-supply.xml,72.565,72.565,35.913,35.913,36.652,0.0,0.0,0.0,0.0,0.0,0.0,0.605,0.0,0.0,3.973,0.728,9.018,0.0,0.0,4.507,0.0,0.334,0.466,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.328,0.0,12.631,9.071,0.619,0.0,0.0,0.0,0.0,2082.3,3646.5,3646.5,28.937,20.098,0.0,3.493,3.67,0.516,7.465,0.641,10.217,-12.781,0.0,0.0,0.0,8.25,-0.087,1.635,0.0,14.457,0.0,7.012,-7.926,-2.52,0.0,0.093,-0.31,-0.03,3.0,0.017,-0.891,11.632,0.0,0.0,0.0,-5.876,-0.083,-0.242,-3.145,-3.773,0.0,2.717,7.645,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-cfis.xml,74.218,74.218,37.185,37.185,37.033,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.017,0.738,9.018,0.0,0.0,4.507,0.0,0.334,1.678,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,12.8,9.071,0.619,0.0,0.0,0.0,0.0,2081.8,3982.5,3982.5,28.936,20.086,0.0,3.492,3.7,0.521,7.453,0.65,10.321,-12.8,0.0,0.0,0.0,8.184,-0.115,1.64,0.0,14.067,0.0,7.804,-7.978,-2.537,0.0,0.154,-0.285,-0.026,2.977,0.024,-0.802,11.613,0.0,0.0,0.0,-5.952,-0.111,-0.245,-3.151,-2.967,0.0,2.148,7.594,1.971,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-erv-atre-asre.xml,64.728,64.728,37.339,37.339,27.388,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.166,0.78,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.65,0.0,13.558,9.071,0.616,0.0,0.0,0.0,0.0,2122.4,3601.5,3601.5,25.051,19.093,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.905,0.0,5.365,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.834,0.0,2.79,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34169.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6021.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,981.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-erv.xml,64.731,64.731,37.339,37.339,27.392,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.166,0.78,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.558,9.071,0.616,0.0,0.0,0.0,0.0,2122.4,3601.6,3601.6,25.052,19.093,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.907,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.835,0.0,2.79,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34170.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6022.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,982.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-exhaust-rated-flow-rate.xml,74.941,74.941,36.354,36.354,38.588,0.0,0.0,0.0,0.0,0.0,0.0,0.637,0.0,0.0,3.957,0.723,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,12.544,9.071,0.62,0.0,0.0,0.0,0.0,2101.6,3755.5,3755.5,30.136,20.894,0.0,3.494,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,2.211,0.0,15.417,0.0,7.345,-7.961,-2.532,0.0,0.117,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.189,-3.076,-4.098,0.0,2.72,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-exhaust.xml,74.941,74.941,36.354,36.354,38.588,0.0,0.0,0.0,0.0,0.0,0.0,0.637,0.0,0.0,3.957,0.723,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.0,12.544,9.071,0.62,0.0,0.0,0.0,0.0,2101.6,3755.5,3755.5,30.136,20.894,0.0,3.494,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,2.211,0.0,15.417,0.0,7.345,-7.961,-2.532,0.0,0.117,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.189,-3.076,-4.098,0.0,2.72,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-hrv-asre.xml,64.729,64.729,37.342,37.342,27.387,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.168,0.781,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.649,0.0,13.559,9.071,0.616,0.0,0.0,0.0,0.0,2122.4,3602.8,3602.8,25.05,19.095,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.903,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.082,-3.588,-0.834,0.0,2.792,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34169.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6021.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,981.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-hrv.xml,64.732,64.732,37.342,37.342,27.39,0.0,0.0,0.0,0.0,0.0,0.0,0.452,0.0,0.0,4.168,0.781,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.652,0.0,13.559,9.071,0.616,0.0,0.0,0.0,0.0,2122.4,3602.9,3602.9,25.051,19.095,0.0,3.514,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.96,0.0,3.905,0.0,5.366,-7.812,-2.491,0.0,-0.015,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.097,-0.061,-1.082,-3.588,-0.834,0.0,2.792,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34170.0,8647.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,6022.0,20164.0,6061.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,982.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-multiple.xml,81.866,81.866,37.634,37.634,44.232,0.0,0.0,0.0,0.0,0.0,0.0,0.727,0.0,0.0,4.186,0.599,9.022,0.0,0.0,4.507,0.0,0.334,1.576,0.0,0.0,0.416,2.043,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.432,0.0,10.371,9.071,0.624,0.0,0.0,0.0,7.0,2189.1,4106.9,4106.9,36.691,22.387,0.0,3.191,3.717,0.523,7.451,0.654,10.364,-12.811,0.0,0.0,0.0,8.203,-0.117,5.177,0.0,9.572,0.0,15.757,-8.004,-2.546,0.0,0.13,-0.164,-0.009,3.27,0.054,-0.447,11.602,0.0,0.0,0.0,-5.531,-0.113,-0.677,0.0,-2.031,-9.008,3.909,7.557,1.962,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43629.0,16325.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7803.0,26282.0,11671.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1489.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-supply.xml,72.687,72.687,36.39,36.39,36.297,0.0,0.0,0.0,0.0,0.0,0.0,0.599,0.0,0.0,4.015,0.738,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.996,0.0,12.804,9.071,0.619,0.0,0.0,0.0,0.0,2094.4,3691.8,3691.8,28.805,20.247,0.0,3.495,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.251,-0.087,1.634,0.0,14.182,0.0,6.949,-7.924,-2.52,0.0,0.09,-0.312,-0.03,2.998,0.017,-0.895,11.633,0.0,0.0,0.0,-5.877,-0.083,-0.243,-3.15,-3.617,0.0,2.749,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37131.0,8710.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8921.0,21155.0,6074.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1959.0,3320.0,0.0,0.0,0.0,0.0
-base-mechvent-whole-house-fan.xml,57.25,57.25,33.845,33.845,23.405,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,2.316,0.343,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.67,2.042,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,5.837,9.071,0.624,0.0,0.0,0.0,0.0,2038.7,3375.2,3375.2,22.816,15.265,0.0,3.542,3.636,0.512,7.523,0.629,10.08,-12.691,0.0,0.0,0.0,8.411,-0.061,4.937,0.0,0.728,0.0,4.635,-7.799,-2.489,0.0,0.165,-0.225,-0.018,3.378,0.032,-0.685,11.723,0.0,0.0,0.0,-5.252,-0.056,-0.922,0.0,-0.129,-12.864,1.448,7.761,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-additional-properties.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-bills-pv-detailed-only.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-bills-pv-mixed.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-bills-pv.xml,58.705,1.441,35.477,-21.786,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-bills.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-defaults.xml,66.057,46.705,31.628,12.276,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,2.452,0.372,2.078,0.0,0.313,4.507,0.0,0.334,1.133,0.0,0.0,1.135,2.16,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.505,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.227,0.0,6.243,10.469,0.696,0.0,9.09,0.0,0.0,2336.5,3248.4,3248.4,27.458,16.79,0.0,3.464,3.659,0.514,7.426,1.112,10.35,-12.439,0.0,0.0,0.0,8.157,-0.096,2.262,0.0,15.207,0.0,2.982,-8.104,-2.533,0.0,0.683,-0.123,-0.003,3.406,-0.202,0.395,13.738,0.0,0.0,0.0,-5.342,-0.091,-0.173,0.0,-3.481,-12.822,0.513,8.557,1.974,1610.3,1574.8,10333.8,3641.8,2.817,36000.0,24000.0,0.0,6.8,91.76,32710.0,4638.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8571.0,16981.0,1113.0,7942.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1841.0,3320.0,0.0,0.0,0.0,0.0
-base-misc-emissions.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2101.4,3853.4,3853.4,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,14.053,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-generators-battery-scheduled.xml,77.439,69.25,37.212,29.023,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2086.1,3893.1,3893.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.737,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-generators-battery.xml,75.705,67.516,35.477,27.288,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-generators.xml,75.705,67.516,35.477,27.288,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-ground-conductivity.xml,56.4,56.4,35.398,35.398,21.002,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,4.126,0.773,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.667,0.0,13.454,9.071,0.614,0.0,0.0,0.0,0.0,2034.0,3591.5,3591.5,21.945,18.243,0.0,3.58,3.659,0.515,7.284,0.634,10.149,-12.67,0.0,0.0,0.0,6.668,-0.068,4.929,0.0,0.729,0.0,4.202,-7.788,-2.486,0.0,-0.044,-0.45,-0.05,2.452,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.041,-0.063,-1.127,-3.796,-0.164,0.0,2.734,7.795,2.021,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32064.0,8590.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-loads-large-uncommon.xml,146.149,146.149,68.127,68.127,70.022,0.0,2.5,5.5,0.0,0.0,0.0,0.285,0.0,0.0,5.203,1.035,9.01,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.255,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,16.157,0.0,18.041,9.071,0.61,0.0,0.0,0.0,0.0,3155.8,5182.2,5182.2,21.567,20.257,0.0,3.634,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.929,0.0,0.734,0.0,3.502,-13.214,-2.475,0.0,-0.191,-0.563,-0.066,2.446,-0.052,-1.708,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.228,-4.544,-0.178,0.0,3.416,13.832,2.033,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-misc-loads-large-uncommon2.xml,92.633,92.633,64.578,64.578,20.055,2.5,0.0,0.0,5.5,0.0,0.0,0.285,0.0,0.0,5.203,1.035,9.01,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.157,0.0,18.041,9.071,0.61,0.0,0.0,0.0,0.0,3116.5,4853.4,4853.4,21.567,20.257,0.0,3.634,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.929,0.0,0.734,0.0,3.502,-13.214,-2.475,0.0,-0.191,-0.563,-0.066,2.446,-0.052,-1.708,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.228,-4.544,-0.178,0.0,3.416,13.832,2.033,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-misc-loads-none.xml,52.808,52.808,24.144,24.144,28.664,0.0,0.0,0.0,0.0,0.0,0.0,0.473,0.0,0.0,3.423,0.605,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.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,28.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.847,0.0,10.502,9.071,0.619,0.0,0.0,0.0,0.0,1511.0,2748.3,2748.3,23.862,16.229,0.0,3.475,3.599,0.506,7.385,0.622,9.987,-12.743,0.0,0.0,0.0,8.162,-0.056,4.962,0.0,0.725,0.0,5.561,-3.14,-2.499,0.0,0.091,-0.336,-0.034,3.052,0.007,-1.005,11.67,0.0,0.0,0.0,-5.757,-0.052,-1.03,-3.185,-0.147,0.0,2.244,3.15,2.008,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-neighbor-shading-bldgtype-multifamily.xml,26.504,26.504,25.37,25.37,1.134,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.412,0.392,9.536,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,0.0,6.57,9.37,0.59,0.0,0.0,0.0,0.0,1520.7,2307.0,2307.0,3.691,8.22,0.0,-0.014,3.74,0.0,0.0,0.409,4.038,-3.314,0.0,0.0,-0.012,0.0,-0.306,1.298,0.0,0.764,0.0,0.0,-4.72,-0.959,0.0,-0.01,-2.563,0.0,0.0,-0.006,-0.595,4.889,0.0,0.0,-0.008,0.0,-0.298,-0.364,-1.34,-0.248,0.0,0.0,6.141,1.067,1354.7,998.0,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6058.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1558.0,7663.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0
-base-misc-neighbor-shading.xml,63.755,63.755,35.238,35.238,28.517,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,3.899,0.72,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,0.0,12.526,9.071,0.617,0.0,0.0,0.0,0.0,2047.7,3374.4,3374.4,23.046,17.565,0.0,3.47,3.704,0.54,7.343,0.775,10.699,-8.751,0.0,0.0,0.0,7.85,-0.061,4.952,0.0,0.723,0.0,5.482,-7.81,-2.491,0.0,0.006,-0.443,-0.051,2.843,-0.033,-1.258,10.312,0.0,0.0,0.0,-6.071,-0.055,-1.098,-3.621,-0.157,0.0,2.546,7.768,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-misc-shielding-of-home.xml,58.371,58.371,35.616,35.616,22.755,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.277,0.81,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,14.139,9.071,0.614,0.0,0.0,0.0,0.0,2038.6,3536.3,3536.3,22.798,18.129,0.0,3.549,3.639,0.512,7.51,0.63,10.09,-12.69,0.0,0.0,0.0,8.285,-0.067,4.557,0.0,0.728,0.0,4.517,-7.796,-2.488,0.0,-0.052,-0.454,-0.05,2.708,-0.023,-1.37,11.724,0.0,0.0,0.0,-6.305,-0.063,-1.016,-3.266,-0.164,0.0,2.823,7.787,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31943.0,8587.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,3854.0,19689.0,6046.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,521.0,3320.0,248.0,0.0,-552.0,800.0
-base-misc-unit-multiplier.xml,587.055,587.055,354.775,354.775,232.281,0.0,0.0,0.0,0.0,0.0,0.0,3.832,0.0,0.0,41.61,7.814,90.14,0.0,0.0,45.072,0.0,3.339,0.0,0.0,0.0,0.0,20.723,0.0,0.0,3.187,3.653,15.127,15.286,0.0,21.155,83.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.531,0.0,136.108,90.712,6.149,0.0,0.0,0.0,0.0,20510.8,37790.5,37790.5,228.163,181.878,0.0,35.447,36.376,5.119,75.056,6.297,100.868,-126.906,0.0,0.0,0.0,82.899,-0.666,49.369,0.0,7.278,0.0,46.004,-77.996,-24.887,0.0,-0.359,-4.404,-0.485,27.481,-0.198,-13.278,117.225,0.0,0.0,0.0,-62.4,-0.627,-11.189,-37.795,-1.617,0.0,27.54,77.82,20.184,13547.4,9980.0,111715.9,25635.4,0.0,360000.0,240000.0,0.0,6.8,91.76,328110.0,86110.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,24080.0,21710.0,46990.0,197940.0,60410.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,22930.0,6310.0,33200.0,1320.0,0.0,-6680.0,8000.0
-base-misc-usage-multiplier.xml,126.617,126.617,50.328,50.328,69.089,0.0,2.25,4.95,0.0,0.0,0.0,0.356,0.0,0.0,4.426,0.846,8.168,0.0,0.0,4.056,0.0,0.301,0.0,0.0,0.0,0.0,1.869,2.151,0.0,0.287,0.329,1.361,1.376,0.0,1.904,7.545,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.599,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.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,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,20.227,0.0,14.734,8.164,0.614,0.0,0.0,0.0,0.0,2563.0,4371.3,4371.3,22.533,18.808,0.0,3.568,3.65,0.514,7.55,0.632,10.117,-12.671,0.0,0.0,0.0,8.337,-0.066,4.976,0.0,0.656,0.0,4.305,-9.444,-2.237,0.0,-0.076,-0.472,-0.053,2.659,-0.028,-1.431,11.745,0.0,0.0,0.0,-6.382,-0.063,-1.16,-3.981,-0.15,0.0,2.924,9.57,1.82,1219.3,898.2,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-pv-battery-ah.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2101.4,3853.4,3853.4,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,14.053,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-battery-garage.xml,60.567,33.681,34.899,8.013,25.668,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.03,0.522,9.115,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.712,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.89,25.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.031,0.0,8.972,9.071,0.723,0.0,0.0,0.0,0.0,2084.0,2921.8,2921.8,19.147,12.352,0.0,3.534,3.796,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.426,0.0,0.0,0.0,4.349,-5.766,-2.495,0.0,0.123,-0.26,-0.033,2.466,0.004,-1.084,8.261,0.0,0.0,0.0,-5.595,-0.043,-1.19,-2.578,0.0,0.0,1.398,5.629,2.012,1354.7,998.0,11171.5,2563.5,17.132,36000.0,24000.0,0.0,6.8,91.76,28888.0,6755.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12674.0,523.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-battery-round-trip-efficiency.xml,60.94,34.054,37.713,10.826,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,2.235,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2233.4,3988.0,3988.0,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,4.46,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-battery-scheduled.xml,60.439,33.553,37.212,10.326,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2086.1,3893.1,3893.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,5.564,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-battery.xml,59.547,32.66,36.319,9.433,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.842,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2101.4,3853.4,3853.4,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,14.053,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-generators-battery-scheduled.xml,77.439,42.364,37.212,2.136,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.735,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2086.1,3893.1,3893.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,16.375,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-generators-battery.xml,76.58,41.504,36.352,1.277,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.875,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2107.1,3842.5,3842.5,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,81.322,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv-generators.xml,75.705,40.629,35.477,0.402,31.727,8.5,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-pv.xml,58.705,31.818,35.477,8.591,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-residents-0-runperiod-1-month.xml,8.6301,8.6301,0.4314,0.4314,8.1986,0.0,0.0,0.0,0.0,0.0,0.0,0.1352,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,8.1986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6747,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,554.09,0.0,554.09,26.1532,0.0,0.0,0.6052,0.6429,0.0909,1.7458,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2352,-0.0005,1.0303,0.0,0.0,0.0,1.5792,-0.1971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-residents-0.xml,40.565,40.565,7.038,7.038,33.527,0.0,0.0,0.0,0.0,0.0,0.0,0.553,0.0,0.0,3.275,0.578,0.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,33.527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.404,0.0,10.471,0.0,0.62,0.0,0.0,0.0,0.0,544.7,1801.6,1801.6,24.768,14.395,0.0,3.431,3.585,0.504,7.283,0.62,9.978,-12.807,0.0,0.0,0.0,7.992,-0.062,5.51,0.0,0.0,0.0,6.406,-1.32,0.0,0.0,0.15,-0.278,-0.025,3.186,0.022,-0.819,11.63,0.0,0.0,0.0,-5.596,-0.057,-1.11,0.0,0.0,0.0,2.138,1.356,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-residents-1-misc-loads-large-uncommon.xml,101.26,101.26,51.518,51.518,41.832,0.0,2.61,5.301,0.0,0.0,0.0,0.356,0.0,0.0,4.411,0.843,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.609,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,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.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.236,0.0,14.816,3.56,0.614,0.0,0.0,0.0,0.0,2405.6,4490.7,4490.7,22.58,18.746,0.0,3.572,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.932,0.0,0.727,0.0,4.311,-9.276,-2.485,0.0,-0.084,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.148,-3.992,-0.166,0.0,2.939,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-residents-1-misc-loads-large-uncommon2.xml,80.206,80.206,49.092,49.092,23.204,2.61,0.0,0.0,5.301,0.0,0.0,0.356,0.0,0.0,4.411,0.843,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.236,0.0,14.816,3.56,0.614,0.0,0.0,0.0,0.0,2252.7,4231.0,4231.0,22.58,18.746,0.0,3.572,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.932,0.0,0.727,0.0,4.311,-9.276,-2.485,0.0,-0.084,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.148,-3.992,-0.166,0.0,2.939,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34020.0,8643.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5876.0,21032.0,6079.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0
-base-residents-1.xml,52.914,52.914,28.074,28.074,24.839,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.907,0.721,3.886,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.263,0.0,12.668,3.56,0.616,0.0,0.0,0.0,0.0,1591.3,3208.8,3208.8,23.186,17.514,0.0,3.526,3.628,0.51,7.477,0.628,10.062,-12.698,0.0,0.0,0.0,8.261,-0.064,4.941,0.0,0.725,0.0,4.894,-6.452,-2.49,0.0,-0.005,-0.416,-0.045,2.824,-0.013,-1.249,11.715,0.0,0.0,0.0,-6.122,-0.06,-1.094,-3.596,-0.158,0.0,2.603,6.439,2.017,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-residents-5.xml,72.535,52.283,39.993,19.742,32.542,0.0,0.0,0.0,0.0,0.0,0.0,0.537,0.0,0.0,2.553,0.395,6.889,0.0,0.326,4.507,0.0,0.334,1.139,0.0,0.0,1.158,2.162,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.393,32.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,6.61,18.155,0.645,0.0,11.919,0.0,0.0,2761.0,3529.8,3529.8,27.048,17.164,0.0,3.776,3.671,0.517,7.465,0.64,10.323,-12.409,0.0,0.0,0.0,8.247,-0.089,2.128,0.0,15.244,0.0,2.822,-9.626,-2.516,0.0,0.231,-0.177,-0.011,3.371,0.048,0.287,13.769,0.0,0.0,0.0,-5.37,-0.085,-0.168,0.0,-3.611,-13.384,0.542,10.074,1.991,2592.0,2707.5,20711.7,5545.7,1.816,36000.0,24000.0,0.0,6.8,91.76,32651.0,4638.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,8512.0,16980.0,1113.0,7942.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1840.0,3320.0,0.0,0.0,0.0,0.0
-base-schedules-detailed-all-10-mins.xml,58.776,58.776,35.688,35.688,23.088,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.327,0.815,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.621,0.0,14.09,9.053,0.639,0.0,0.0,0.5,0.667,9380.8,10992.7,10992.7,37.435,22.219,0.0,3.611,3.668,0.517,7.592,0.642,10.186,-12.603,0.0,0.0,0.0,8.335,-0.064,5.385,0.0,0.78,0.0,4.612,-8.838,-2.51,0.0,-0.158,-0.469,-0.053,2.756,-0.027,-1.374,11.75,0.0,0.0,0.0,-6.238,-0.058,-1.231,-3.664,-0.171,0.0,2.89,8.293,2.0,1354.7,998.0,11252.4,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-mixed-timesteps-power-outage.xml,33.02,33.02,28.143,28.143,4.877,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.043,0.51,7.327,0.0,0.0,3.619,0.0,0.267,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.714,6.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,8.907,7.3,0.563,0.0,0.0,0.5,0.167,9346.7,10730.9,10730.9,41.893,21.821,0.0,2.598,2.444,0.341,4.234,0.331,6.442,-12.497,0.0,0.0,0.0,3.628,-0.104,3.383,0.0,0.383,0.0,0.936,-6.224,-1.596,0.0,-0.195,-0.548,-0.064,2.502,-0.052,-1.653,11.861,0.0,0.0,0.0,-7.403,-0.057,-1.308,-6.168,-0.205,0.0,1.904,8.433,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-mixed-timesteps.xml,41.838,41.838,33.786,33.786,8.053,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.055,0.513,9.053,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,1.964,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,8.952,9.053,0.672,0.0,0.0,0.0,0.167,9343.2,10733.9,10733.9,32.436,21.828,0.0,2.908,2.799,0.392,5.377,0.419,7.492,-12.492,0.0,0.0,0.0,5.492,-0.058,3.874,0.0,0.58,0.0,1.584,-8.621,-2.486,0.0,-0.199,-0.552,-0.065,2.507,-0.053,-1.662,11.861,0.0,0.0,0.0,-7.334,-0.056,-1.31,-6.186,-0.206,0.0,1.912,8.433,2.023,1354.7,998.0,11253.7,2582.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.187,58.187,35.58,35.58,22.607,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.25,0.802,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.092,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.167,0.0,13.89,8.987,0.616,0.0,0.0,0.0,0.0,6608.6,7133.5,9240.1,31.595,20.784,0.0,3.559,3.646,0.513,7.53,0.631,10.108,-12.678,0.0,0.0,0.0,8.324,-0.063,5.387,0.0,0.764,0.0,4.478,-8.848,-2.502,0.0,-0.039,-0.441,-0.049,2.741,-0.02,-1.333,11.735,0.0,0.0,0.0,-6.251,-0.059,-1.246,-3.801,-0.187,0.0,2.791,8.348,1.98,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.079,44.079,29.802,29.802,14.277,0.0,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,4.22,0.795,7.294,0.0,0.0,3.627,0.0,0.267,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.716,6.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.373,0.0,13.773,7.313,0.518,0.0,0.0,17.0,0.0,6179.5,5594.1,6179.5,36.593,18.761,0.0,3.067,3.06,0.429,5.684,0.487,8.36,-12.688,0.0,0.0,0.0,5.15,-0.157,4.417,0.0,0.513,0.0,2.762,-6.403,-1.622,0.0,-0.038,-0.441,-0.049,2.728,-0.02,-1.332,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.23,-3.798,-0.184,0.0,2.768,8.264,2.005,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-occupancy-stochastic-vacancy.xml,56.833,56.833,30.396,30.396,26.437,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,4.238,0.8,7.369,0.0,0.0,3.622,0.0,0.266,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.714,6.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.758,0.0,13.849,7.303,0.615,0.0,0.0,0.0,0.0,4554.9,5600.4,5600.4,31.037,18.816,0.0,3.509,3.621,0.509,7.451,0.625,10.036,-12.686,0.0,0.0,0.0,8.159,-0.063,5.388,0.0,0.513,0.0,5.165,-6.175,-1.615,0.0,-0.042,-0.445,-0.049,2.735,-0.021,-1.348,11.732,0.0,0.0,0.0,-6.263,-0.058,-1.235,-3.814,-0.184,0.0,2.78,8.275,2.007,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-occupancy-stochastic.xml,58.146,58.146,35.565,35.565,22.58,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.239,0.8,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.0,13.851,9.071,0.615,0.0,0.0,0.0,0.0,4758.3,5600.6,5600.6,30.914,18.818,0.0,3.556,3.643,0.513,7.527,0.63,10.097,-12.674,0.0,0.0,0.0,8.314,-0.063,5.337,0.0,0.777,0.0,4.475,-8.818,-2.502,0.0,-0.043,-0.446,-0.049,2.735,-0.022,-1.348,11.739,0.0,0.0,0.0,-6.263,-0.059,-1.235,-3.815,-0.184,0.0,2.781,8.277,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-setpoints-daily-schedules.xml,57.514,57.514,34.887,34.887,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.682,0.685,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8,0.0,11.695,9.071,0.617,0.0,0.0,105.0,37.0,2071.1,3769.9,3769.9,34.895,20.609,0.0,3.502,3.568,0.501,7.484,0.605,9.792,-12.687,0.0,0.0,0.0,8.632,0.008,4.795,0.0,0.725,0.0,4.312,-7.752,-2.486,0.0,-0.044,-0.468,-0.053,2.705,-0.034,-1.489,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.178,-4.193,-0.17,0.0,2.156,7.825,2.022,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-setpoints-daily-setbacks.xml,56.954,56.954,35.032,35.032,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,3.814,0.711,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.44,0.0,12.268,9.071,0.617,0.0,0.0,0.0,5.0,2047.5,3739.1,3739.1,25.066,21.068,0.0,3.496,3.553,0.499,7.325,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.769,0.0,0.723,0.0,4.217,-7.768,-2.488,0.0,-0.031,-0.468,-0.053,2.647,-0.033,-1.492,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.164,-4.138,-0.172,0.0,2.315,7.808,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-detailed-setpoints.xml,41.704,41.704,33.546,33.546,8.158,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,2.866,0.474,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.634,0.0,8.338,9.071,0.649,0.0,0.0,0.0,0.0,2011.6,3387.9,3387.9,17.418,15.457,0.0,2.816,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.369,-0.059,3.482,0.0,0.566,0.0,1.589,-7.591,-2.465,0.0,-0.07,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.184,-6.334,-0.18,0.0,1.758,7.912,2.042,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-simple-power-outage.xml,68.407,68.407,45.909,45.909,22.498,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,3.319,0.592,20.687,1.37,0.0,4.199,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.292,0.335,1.386,1.401,0.0,1.94,7.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,10.353,8.477,0.581,0.0,0.0,0.0,4.0,2804.6,8089.0,8089.0,22.634,22.488,0.0,3.555,3.641,0.512,7.518,0.63,10.09,-12.683,0.0,0.0,0.0,8.283,-0.063,4.893,0.0,0.795,0.0,4.465,-8.411,-2.488,0.0,-0.087,-0.521,-0.06,2.522,-0.041,-1.582,11.731,0.0,0.0,0.0,-6.565,-0.059,-1.198,-4.377,-0.172,0.0,2.05,7.245,1.711,1241.4,914.9,10291.6,2416.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-simple-vacancy.xml,69.072,69.072,42.79,42.79,26.282,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.264,0.806,18.16,1.241,0.0,3.592,0.0,0.266,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.265,0.303,1.256,1.269,0.0,1.756,6.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.613,0.0,13.988,7.337,0.615,0.0,0.0,0.0,0.0,2841.9,3944.7,3944.7,22.69,18.167,0.0,3.509,3.619,0.509,7.447,0.625,10.031,-12.688,0.0,0.0,0.0,8.147,-0.064,5.077,0.0,0.552,0.0,5.142,-6.041,-1.573,0.0,-0.049,-0.451,-0.05,2.713,-0.023,-1.368,11.73,0.0,0.0,0.0,-6.295,-0.059,-1.109,-3.867,-0.197,0.0,2.81,8.377,2.019,1124.6,828.5,9189.2,2157.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-schedules-simple.xml,72.9,72.9,50.419,50.419,22.48,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.264,0.806,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.053,0.0,13.99,9.105,0.614,0.0,0.0,0.0,0.0,2804.6,3877.6,3877.6,22.632,18.137,0.0,3.555,3.641,0.512,7.519,0.63,10.09,-12.683,0.0,0.0,0.0,8.295,-0.063,4.932,0.0,0.729,0.0,4.462,-8.411,-2.488,0.0,-0.05,-0.452,-0.05,2.712,-0.023,-1.369,11.73,0.0,0.0,0.0,-6.294,-0.059,-1.132,-3.871,-0.164,0.0,2.809,8.377,2.019,1354.7,998.0,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-calendar-year-custom.xml,58.665,58.665,35.435,35.435,23.23,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.127,0.773,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,13.445,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3437.9,3437.9,22.816,18.146,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.066,4.937,0.0,0.728,0.0,4.601,-7.8,-2.489,0.0,-0.032,-0.438,-0.048,2.764,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.231,-0.062,-1.117,-3.948,-0.161,0.0,2.723,7.782,2.018,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-daylight-saving-custom.xml,58.706,58.706,35.477,35.477,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.753,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-daylight-saving-disabled.xml,58.677,58.677,35.461,35.461,23.216,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.147,0.779,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.742,0.0,13.554,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3316.2,3316.2,22.816,17.804,0.0,3.544,3.636,0.512,7.506,0.629,10.074,-12.69,0.0,0.0,0.0,8.286,-0.062,4.933,0.0,0.725,0.0,4.598,-7.793,-2.487,0.0,-0.036,-0.442,-0.049,2.744,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.242,-0.058,-1.125,-3.794,-0.159,0.0,2.73,7.788,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-runperiod-1-month.xml,11.2996,11.2996,2.9078,2.9078,8.3917,0.0,0.0,0.0,0.0,0.0,0.0,0.1364,0.0,0.0,0.1114,0.0,0.9104,0.0,0.0,0.3947,0.0,0.0292,0.0,0.0,0.0,0.0,0.1565,0.0,0.0,0.0262,0.03,0.1243,0.1256,0.0,0.1739,0.6891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.3917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8584,0.0,0.0,0.9244,0.0547,0.0,0.0,0.0,0.0,2015.84,0.0,2015.84,23.1969,0.0,0.0,0.6024,0.659,0.0933,2.0513,0.1156,1.8292,-2.373,0.0,0.0,0.0,3.8053,0.013,0.9241,0.0,0.1225,0.0,1.6148,-1.2712,-0.3948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.35,82.03,980.71,225.04,0.0,36000.0,24000.0,0.0,10.22,91.4,31211.0,8359.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4406.0,19561.0,5889.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,617.0,3320.0,0.0,0.0,0.0,0.0
-base-simcontrol-temperature-capacitance-multiplier.xml,58.61,58.61,35.377,35.377,23.234,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.079,0.763,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.758,0.0,13.273,9.071,0.615,0.0,0.0,0.0,0.0,2050.5,3760.8,3760.8,22.765,18.092,0.0,3.612,3.633,0.511,7.501,0.627,10.055,-12.69,0.0,0.0,0.0,8.265,-0.055,4.931,0.0,0.726,0.0,4.594,-7.787,-2.487,0.0,-0.199,-0.437,-0.048,2.759,-0.02,-1.337,11.724,0.0,0.0,0.0,-6.235,-0.051,-1.127,-3.882,-0.16,0.0,2.625,7.794,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,58.786,58.786,35.682,35.682,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.326,0.815,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.635,0.0,14.084,9.074,0.617,0.0,0.0,0.5,0.667,8695.4,8922.2,9428.0,37.437,22.218,0.0,3.611,3.668,0.517,7.591,0.642,10.187,-12.602,0.0,0.0,0.0,8.335,-0.064,5.385,0.0,0.78,0.0,4.615,-8.827,-2.51,0.0,-0.158,-0.469,-0.053,2.757,-0.027,-1.373,11.752,0.0,0.0,0.0,-6.238,-0.059,-1.23,-3.662,-0.171,0.0,2.889,8.282,2.0,1354.7,998.0,11182.0,2565.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,58.713,58.713,35.674,35.674,23.039,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.323,0.814,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.574,0.0,14.075,9.071,0.615,0.0,0.0,0.0,0.0,6262.6,7168.0,7168.0,35.802,21.559,0.0,3.611,3.667,0.517,7.59,0.642,10.183,-12.602,0.0,0.0,0.0,8.332,-0.062,5.336,0.0,0.771,0.0,4.605,-8.82,-2.502,0.0,-0.159,-0.47,-0.054,2.755,-0.027,-1.377,11.752,0.0,0.0,0.0,-6.24,-0.058,-1.216,-3.666,-0.183,0.0,2.886,8.274,2.008,1354.7,998.0,11168.7,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-timestep-10-mins.xml,59.289,59.289,35.585,35.585,23.704,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.244,0.796,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.197,0.0,13.826,9.071,0.615,0.0,0.0,0.0,0.0,3459.1,5096.7,5096.7,23.031,18.119,0.0,3.601,3.662,0.516,7.569,0.641,10.17,-12.616,0.0,0.0,0.0,8.308,-0.063,4.923,0.0,0.733,0.0,4.735,-7.799,-2.488,0.0,-0.151,-0.463,-0.053,2.773,-0.026,-1.354,11.737,0.0,0.0,0.0,-6.209,-0.059,-1.093,-3.621,-0.168,0.0,2.858,7.782,2.019,1354.7,998.0,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base-simcontrol-timestep-30-mins.xml,59.075,59.075,35.54,35.54,23.535,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.209,0.789,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.039,0.0,13.718,9.071,0.615,0.0,0.0,0.0,0.0,2064.6,3814.8,3814.8,22.955,18.123,0.0,3.582,3.654,0.515,7.542,0.638,10.152,-12.641,0.0,0.0,0.0,8.296,-0.064,4.925,0.0,0.731,0.0,4.682,-7.799,-2.488,0.0,-0.121,-0.458,-0.052,2.768,-0.024,-1.356,11.738,0.0,0.0,0.0,-6.22,-0.06,-1.101,-3.681,-0.166,0.0,2.798,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-base.xml,58.705,58.705,35.477,35.477,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.161,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,13.611,9.071,0.615,0.0,0.0,0.0,0.0,2051.1,3779.1,3779.1,22.816,18.188,0.0,3.545,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.937,0.0,0.728,0.0,4.6,-7.8,-2.489,0.0,-0.036,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.78,-0.162,0.0,2.754,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32811.0,8611.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19794.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0
-house001.xml,87.969,87.969,47.598,47.598,40.371,0.0,0.0,0.0,0.0,0.0,0.0,0.262,0.0,0.0,16.31,4.49,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.399,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.344,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,53.188,10.404,2.679,0.0,0.0,0.0,0.0,1867.8,7081.8,7081.8,38.223,44.839,0.486,1.955,7.214,0.417,0.0,0.974,7.105,-4.957,0.0,0.0,0.478,1.22,-0.297,4.287,0.0,5.127,0.0,3.331,-5.635,-2.914,0.563,1.942,3.55,0.296,0.0,0.215,2.639,13.842,0.0,0.0,0.502,6.627,-0.283,-0.426,-1.952,-0.777,0.0,11.325,10.875,4.462,2104.4,2144.8,14468.9,4385.2,0.0,90000.0,60000.0,0.0,25.88,98.42,62194.0,24410.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,9392.0,62989.0,35235.0,10595.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3551.0,3780.0,7159.0,3503.0,2455.0,1200.0
-house002.xml,69.166,69.166,41.261,41.261,27.905,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,15.155,3.484,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.287,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.431,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,0.0,41.854,7.517,2.891,0.0,0.0,0.0,0.0,1572.0,5643.5,5643.5,24.151,31.257,0.0,2.52,5.023,0.0,0.0,0.839,5.689,-4.078,0.0,0.0,0.0,1.724,-0.163,1.573,0.0,3.773,0.0,1.417,-4.3,-2.477,0.0,3.013,2.694,0.0,0.0,0.4,1.135,10.398,0.0,0.0,0.0,8.187,-0.156,-0.19,-1.428,-0.663,0.0,6.187,8.576,3.901,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48142.0,15321.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,5600.0,34153.0,14225.0,7463.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,2150.0,3320.0,4039.0,1752.0,1487.0,800.0
-house003.xml,69.787,69.787,40.827,40.827,28.961,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,13.432,3.676,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.73,0.0,13.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.752,0.0,44.086,7.518,2.689,0.0,0.0,0.0,0.0,1652.4,5870.0,5870.0,26.566,36.168,0.645,2.769,4.641,0.0,0.0,0.972,6.22,-3.922,0.0,0.0,0.0,1.046,-0.192,1.99,0.0,3.923,0.0,1.655,-4.48,-2.678,0.788,2.978,2.498,0.0,0.0,0.631,1.946,11.834,0.0,0.0,0.0,6.22,-0.184,-0.23,-1.488,-0.666,0.0,6.92,8.875,4.194,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48717.0,15957.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,6185.0,42807.0,18335.0,10270.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2344.0,3320.0,4173.0,1752.0,1621.0,800.0
-house004.xml,138.513,138.513,76.769,76.769,61.743,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,30.434,9.624,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.245,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.608,0.0,16.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,113.424,8.975,3.511,0.0,0.0,0.0,179.0,3079.3,7937.3,7937.3,55.125,52.716,0.127,5.464,11.273,0.0,0.0,1.243,13.597,-5.923,0.0,0.0,0.0,3.024,-0.801,5.024,0.0,6.237,0.0,7.23,-6.122,-3.799,0.198,6.582,11.518,0.0,0.0,0.504,8.865,20.874,0.0,0.0,0.0,18.438,-0.788,1.046,0.0,1.818,0.0,22.315,14.659,7.757,1857.6,1860.1,12229.1,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,77153.0,20989.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,10389.0,53882.0,18511.0,13772.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3840.0,3550.0,4941.0,1285.0,2656.0,1000.0
-house005.xml,96.981,96.981,54.586,54.586,42.394,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,19.408,5.386,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.341,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.205,0.0,15.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.063,0.0,64.953,8.975,2.732,0.0,0.0,0.0,4.0,2101.7,7892.4,7892.4,46.464,54.39,0.0,2.992,8.12,0.266,0.0,1.349,9.361,-6.645,0.0,0.0,0.393,1.228,-0.391,5.026,0.0,5.055,0.0,4.471,-5.755,-3.607,0.0,2.88,4.029,0.204,0.0,0.241,3.673,18.514,0.0,0.0,0.397,7.201,-0.373,-0.52,-2.494,-0.781,0.0,15.574,11.147,5.543,1857.6,1860.1,12229.0,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,71725.0,26974.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,10348.0,66712.0,31452.0,15480.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3844.0,3550.0,7162.0,3503.0,2659.0,1000.0
-house006.xml,139.332,139.332,31.741,31.741,107.591,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,3.067,0.353,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.748,0.0,20.131,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.701,0.0,8.403,13.079,3.279,0.0,0.0,0.0,0.0,2052.4,2911.0,2911.0,40.571,16.051,0.0,4.253,22.244,1.988,37.092,1.862,17.604,-9.44,0.0,0.0,0.0,9.259,-0.341,8.592,0.0,4.364,0.0,0.0,-13.229,-6.359,0.0,0.166,-0.837,-0.049,2.756,-0.087,-0.177,5.071,0.0,0.0,0.0,-3.94,-0.34,-0.441,-1.64,-0.074,0.0,0.0,5.775,2.323,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50885.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5348.0,10160.0,0.0,4797.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,172.0,3320.0,1569.0,0.0,769.0,800.0
-house007.xml,140.218,140.218,33.874,33.874,106.344,0.0,0.0,0.0,0.0,0.0,0.0,1.665,0.0,0.0,2.683,0.423,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.17,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.681,0.0,23.276,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.202,0.0,6.439,15.626,3.27,0.0,0.0,0.0,0.0,2277.8,3102.0,3102.0,39.986,14.716,0.0,4.708,23.655,4.442,10.097,1.497,18.806,-9.372,0.0,0.0,0.076,11.538,-0.406,6.127,0.0,20.808,0.0,2.922,-15.539,-7.655,0.0,0.196,-0.747,-0.061,0.538,-0.047,0.084,5.413,0.0,0.0,-0.009,-4.042,-0.402,-0.19,-1.432,-1.884,0.0,0.119,6.363,2.638,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,45997.0,5482.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,10477.0,12950.0,1094.0,6017.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,534.0,3550.0,2221.0,404.0,817.0,1000.0
-house008.xml,184.049,184.049,39.185,39.185,144.864,0.0,0.0,0.0,0.0,0.0,0.0,2.503,0.0,0.0,3.799,0.567,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.229,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.434,0.0,26.368,3.452,3.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.001,0.0,11.206,18.122,3.214,0.0,0.0,0.0,0.0,2559.4,3976.6,3976.6,55.48,22.817,0.0,7.218,27.486,4.711,24.288,1.198,21.284,-7.842,0.0,0.0,1.297,17.844,-0.444,17.342,0.0,6.386,0.0,8.195,-16.717,-8.078,0.0,0.295,-1.174,-0.067,1.581,-0.09,0.067,6.352,0.0,0.0,-0.117,-2.821,-0.444,-0.894,-1.837,-0.277,0.0,0.58,7.243,2.921,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68680.0,8922.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9808.0,17721.0,274.0,10293.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,320.0,3780.0,2487.0,158.0,1129.0,1200.0
-house009.xml,155.246,155.246,34.01,34.01,121.235,0.0,0.0,0.0,0.0,0.0,0.0,2.056,0.0,0.0,2.592,0.323,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.166,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.565,0.0,23.283,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.278,0.0,6.172,15.626,3.276,0.0,0.0,0.0,0.0,2311.9,3203.0,3203.0,44.411,16.009,0.0,5.092,28.364,4.312,13.019,2.25,18.86,-8.186,0.0,0.0,0.265,15.608,-0.432,8.706,0.0,21.415,0.0,0.0,-15.768,-7.743,0.0,0.228,-0.783,-0.041,0.681,-0.079,0.208,5.46,0.0,0.0,-0.029,-4.18,-0.429,-0.258,-1.333,-1.812,0.0,0.0,6.109,2.523,1857.6,1860.1,14896.4,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,46535.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,12367.0,13658.0,0.0,7141.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,580.0,3550.0,1888.0,0.0,888.0,1000.0
-house010.xml,154.665,154.665,37.525,37.525,117.14,0.0,0.0,0.0,0.0,0.0,0.0,1.88,0.0,0.0,3.077,0.293,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.229,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.708,0.0,26.369,3.452,3.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.879,0.0,8.192,18.122,3.214,0.0,0.0,0.0,0.0,2495.6,3442.3,3442.3,46.025,17.607,0.872,4.92,25.49,4.912,9.743,1.271,22.942,-9.202,0.0,0.0,0.938,11.377,-0.453,18.568,0.0,6.397,0.0,5.276,-16.71,-8.051,0.021,0.206,-0.817,-0.103,0.507,-0.077,-0.324,6.034,0.0,0.0,-0.055,-4.219,-0.45,-0.935,-1.755,-0.265,0.0,0.371,7.23,2.93,2104.4,2144.8,17624.5,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51051.0,7319.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10730.0,13653.0,647.0,6171.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,344.0,3780.0,2627.0,261.0,1166.0,1200.0
-house011.xml,45.736,45.736,45.736,45.736,0.0,0.0,0.0,0.0,0.0,0.0,7.475,0.735,0.149,0.008,8.521,2.316,10.444,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.321,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.157,26.7,9.316,1.124,0.0,0.0,0.0,397.0,4928.3,3415.7,4928.3,18.667,16.381,0.0,2.656,5.463,0.0,0.0,1.649,3.51,-3.163,0.0,0.0,1.87,0.0,-0.405,1.852,0.0,5.455,0.0,4.465,-5.244,-2.075,0.0,1.616,1.233,0.0,0.0,0.16,0.629,6.488,0.0,0.0,0.725,0.0,-0.404,-0.185,-0.304,-0.958,0.0,6.867,8.132,2.827,0.0,1860.1,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,21304.0,6705.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,5560.0,22173.0,8205.0,4146.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1418.0,3550.0,3303.0,463.0,1840.0,1000.0
-house012.xml,36.087,36.087,36.087,36.087,0.0,0.0,0.0,0.0,0.0,0.0,4.983,0.265,0.0,0.0,5.972,1.512,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,16.822,7.775,1.158,0.0,0.0,0.0,0.0,2994.0,2872.0,2994.0,11.34,11.948,0.0,2.358,4.746,0.0,0.0,0.63,2.691,-1.84,0.0,0.0,2.029,0.0,-0.27,1.654,0.0,4.379,0.0,0.342,-4.181,-1.926,0.0,1.696,1.065,0.0,0.0,-0.034,0.795,4.208,0.0,0.0,1.55,0.0,-0.27,-0.154,-0.275,-0.711,0.0,0.286,6.286,2.45,0.0,1575.3,10579.4,3728.3,0.0,23400.0,23200.0,0.0,24.62,91.58,14431.0,1329.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4673.0,12574.0,648.0,3114.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1174.0,3320.0,2693.0,370.0,1523.0,800.0
-house013.xml,30.906,30.906,30.906,30.906,0.0,0.0,0.0,0.0,0.0,0.0,3.07,0.171,0.0,0.0,3.983,1.301,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,0.0,15.516,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2350.1,2594.8,10.007,10.393,0.0,1.63,2.869,0.0,0.0,0.66,2.641,-2.189,0.0,0.0,2.103,0.0,-0.276,1.733,0.0,1.073,0.0,1.245,-3.291,-1.519,0.0,1.071,0.386,0.0,0.0,-0.087,0.526,4.372,0.0,0.0,0.548,0.0,-0.276,-0.26,-0.342,-0.263,0.0,1.496,5.987,2.444,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13403.0,3789.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2763.0,10763.0,1649.0,2387.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,594.0,3090.0,1683.0,312.0,771.0,600.0
-house014.xml,31.992,31.992,31.992,31.992,0.0,0.0,0.0,0.0,0.0,0.0,3.598,0.206,0.008,0.0,4.42,1.445,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.008,17.35,6.844,0.598,0.0,0.0,0.0,0.0,2971.0,2442.6,2971.0,11.224,11.287,0.0,1.695,3.693,0.0,0.0,0.586,3.038,-2.511,0.0,0.0,2.203,0.0,-0.249,1.943,0.0,1.123,0.0,1.537,-3.337,-1.619,0.0,1.115,0.528,0.0,0.0,-0.069,0.933,5.567,0.0,0.0,0.588,0.0,-0.249,-0.26,-0.385,-0.25,0.0,1.73,5.769,2.432,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14656.0,3937.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,3021.0,12225.0,1718.0,3504.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,646.0,3090.0,1750.0,312.0,838.0,600.0
-house015.xml,30.906,30.906,30.906,30.906,0.0,0.0,0.0,0.0,0.0,0.0,3.07,0.171,0.0,0.0,3.983,1.301,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,0.0,15.516,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2350.1,2594.8,10.007,10.393,0.0,1.63,2.869,0.0,0.0,0.66,2.641,-2.189,0.0,0.0,2.103,0.0,-0.276,1.733,0.0,1.073,0.0,1.245,-3.291,-1.519,0.0,1.071,0.386,0.0,0.0,-0.087,0.526,4.372,0.0,0.0,0.548,0.0,-0.276,-0.26,-0.342,-0.263,0.0,1.496,5.987,2.444,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13403.0,3789.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2763.0,10763.0,1649.0,2387.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,594.0,3090.0,1683.0,312.0,771.0,600.0
-house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,0.0,0.0,0.0,0.0,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.564,0.0,15.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.676,0.2,11.075,10.47,0.0,0.0,0.0,2.0,11.0,7490.7,3805.5,7490.7,43.399,19.024,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852,1758.9,1746.2,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,27345.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5408.0,18643.0,0.0,9139.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,604.0,3320.0,2014.0,0.0,1214.0,800.0
-house017.xml,92.618,92.618,27.618,27.618,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.403,0.569,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.966,0.0,9.661,11.132,3.429,0.0,0.0,154.0,95.0,1752.9,3646.0,3646.0,60.37,19.588,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676,1778.6,1769.0,13969.4,4664.0,0.0,60000.0,24000.0,0.0,16.16,89.24,37025.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11923.0,17009.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1608.0,3550.0,3597.0,0.0,2597.0,1000.0
-house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,0.0,4300.8,2813.2,4300.8,20.203,11.09,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167,1341.8,1265.0,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,21010.0,7554.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3224.0,12952.0,2713.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,360.0,4520.0,2884.0,1360.0,724.0,800.0
-house019.xml,130.924,130.924,51.412,51.412,79.513,0.0,0.0,0.0,0.0,0.0,0.0,1.145,0.0,0.0,11.118,3.598,9.72,0.0,0.0,8.918,0.0,0.741,0.054,0.0,0.0,0.0,1.776,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.859,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.737,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.542,0.0,43.367,7.887,1.827,0.0,0.0,194.0,265.0,2881.5,6510.6,6633.5,85.025,46.034,0.0,11.376,44.742,0.649,4.997,1.919,16.393,-14.227,0.0,0.0,0.0,5.939,-0.058,8.895,0.0,1.868,0.0,0.0,-9.364,-5.112,0.0,2.992,10.191,0.15,2.861,0.274,1.619,17.005,0.0,0.0,0.0,-4.229,-0.045,-0.147,-0.549,0.025,0.0,0.0,8.111,3.806,1341.8,1265.0,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50676.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,2051.0,5769.0,5578.0,32671.0,0.0,12638.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,752.0,4520.0,2015.0,0.0,1215.0,800.0
-house020.xml,118.228,118.228,55.915,55.915,0.0,0.0,62.313,0.0,0.0,0.0,0.0,0.859,0.0,0.0,12.832,2.69,0.0,0.0,0.0,12.743,0.0,0.893,0.026,0.0,0.0,0.0,3.6,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.257,16.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,0.0,0.0,0.0,0.0,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.171,0.0,18.911,0.0,3.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,32.561,10.47,4.231,0.0,0.0,0.0,0.0,2751.7,7066.1,7066.1,31.591,32.388,0.905,10.974,10.526,1.128,9.723,0.63,15.107,-15.183,0.0,0.0,0.0,7.43,-0.035,15.222,0.0,0.835,0.0,0.0,-13.621,-6.997,0.25,0.229,0.292,0.065,6.495,0.019,-2.378,20.686,0.0,0.0,0.0,-6.534,-0.025,-2.589,-3.085,-0.19,0.0,0.0,13.724,5.746,1758.9,1746.2,13595.5,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,46286.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3834.0,6812.0,10617.0,25353.0,0.0,10675.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1186.0,4520.0,3184.0,0.0,2384.0,800.0
-house021.xml,158.539,158.539,48.132,48.132,110.407,0.0,0.0,0.0,0.0,0.0,0.0,2.05,0.0,0.0,8.113,1.43,0.0,0.0,0.0,10.634,0.244,0.772,0.071,0.0,0.0,0.0,2.427,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.257,13.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.369,0.0,19.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.135,0.0,17.706,10.98,3.821,0.0,0.0,0.0,0.0,2866.7,4993.1,4993.1,81.671,23.457,0.0,8.26,27.041,2.42,9.152,0.859,21.809,-20.304,0.0,0.0,1.092,9.421,-0.34,26.657,0.0,2.49,0.0,6.202,-13.373,-6.862,0.0,0.067,-0.68,0.022,2.244,-0.088,-2.169,14.671,0.0,0.0,0.043,-5.98,-0.317,-2.326,-1.373,-0.378,0.0,1.216,9.112,3.772,1758.9,1746.2,13752.1,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,53402.0,8082.0,10175.0,0.0,318.0,15825.0,0.0,323.0,2208.0,3431.0,13039.0,28608.0,5951.0,9824.0,0.0,149.0,3704.0,0.0,-30.0,0.0,2501.0,1758.0,4750.0,4968.0,1128.0,2840.0,1000.0
-house022.xml,138.743,138.743,48.318,48.318,0.0,90.425,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,8.573,0.779,12.465,0.0,0.0,6.686,0.0,0.61,0.034,0.0,0.0,0.0,1.898,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.257,5.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,90.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.231,0.0,18.685,10.98,1.483,0.0,0.0,186.0,120.0,3142.8,5514.7,5514.7,90.88,27.58,3.679,3.754,20.597,0.0,0.0,1.485,16.588,-13.15,0.0,0.0,14.629,0.0,-0.285,37.702,0.0,1.155,0.0,0.0,-8.491,-4.277,1.127,0.188,0.722,0.0,0.0,-0.113,-1.346,11.437,0.0,0.0,2.129,0.0,-0.276,-2.538,-1.143,-0.067,0.0,0.0,5.99,2.409,1758.9,1746.2,13751.6,4620.0,0.0,100000.0,36000.0,0.0,16.16,89.24,54239.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21908.0,25373.0,0.0,8964.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2954.0,4520.0,5571.0,0.0,4771.0,800.0
-house023.xml,139.646,139.646,62.815,62.815,0.0,76.832,0.0,0.0,0.0,0.0,0.0,1.935,0.0,0.0,5.826,0.698,19.988,0.0,0.0,9.214,0.0,0.692,0.045,0.0,0.0,0.0,4.03,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,11.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.0,15.975,17.089,2.771,0.0,0.0,0.0,0.0,4118.5,5044.9,5044.9,62.827,20.991,0.0,10.207,21.479,1.2,16.388,0.85,9.987,-7.816,0.0,0.0,0.0,6.155,-0.059,23.718,0.0,1.636,0.0,0.0,-14.037,-5.919,0.0,-0.145,-0.924,-0.008,6.022,-0.11,-0.995,9.137,0.0,0.0,0.0,-5.965,-0.037,-2.587,-1.358,-0.309,0.0,0.0,10.041,3.296,2176.0,2227.4,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,46165.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1816.0,4899.0,15515.0,22671.0,0.0,8657.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2079.0,4750.0,4357.0,0.0,3357.0,1000.0
-house024.xml,130.453,130.453,43.582,43.582,0.0,86.87,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,5.228,0.491,16.743,0.0,0.0,3.914,0.0,0.396,0.058,0.0,0.0,0.0,1.837,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,3.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.617,0.0,15.305,14.642,2.089,0.0,0.0,0.0,0.0,2724.8,3638.7,3638.7,72.195,17.678,0.0,7.178,30.02,0.0,0.0,0.682,7.226,-7.905,0.0,0.0,5.082,0.0,-0.118,25.395,0.0,1.84,0.0,11.928,-7.457,-2.541,0.0,0.621,1.357,0.0,0.0,-0.037,-0.258,5.994,0.0,0.0,0.568,0.0,-0.111,-1.368,-0.637,-0.185,0.0,2.915,5.131,1.373,2176.0,2227.4,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,62811.0,14524.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,17134.0,21785.0,1244.0,4065.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2311.0,3320.0,6672.0,2141.0,3731.0,800.0
-house025.xml,105.591,105.591,69.786,69.786,35.805,0.0,0.0,0.0,0.0,0.0,6.738,1.082,0.0,0.0,18.729,3.053,12.209,0.0,0.0,9.258,0.0,0.783,0.0,0.0,0.0,0.0,3.902,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,8.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.641,0.0,47.484,8.315,3.831,0.0,0.0,0.0,0.0,4475.8,7250.0,7250.0,36.615,33.391,0.0,3.377,17.567,0.0,0.0,2.17,7.405,-5.706,0.0,0.0,6.826,0.0,-1.341,13.757,0.001,0.41,0.0,5.032,-7.951,-3.985,0.0,1.098,5.727,0.0,0.0,0.446,1.957,12.402,0.0,0.0,5.586,0.0,-1.34,-0.7,-0.276,-0.004,0.0,6.312,11.261,5.273,1341.8,1265.0,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,58440.0,23853.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,11062.0,35444.0,11934.0,7696.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2251.0,4520.0,9692.0,5972.0,2921.0,800.0
-house026.xml,57.774,57.774,24.962,24.962,32.812,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.53,0.252,0.548,0.299,0.0,0.0,0.0,2.084,0.0,0.0,0.447,0.338,2.514,1.529,0.934,2.116,7.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.696,0.0,14.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.338,0.0,0.0,8.599,2.068,0.0,0.0,0.0,0.0,1544.5,1475.8,1544.5,17.654,0.0,0.0,1.77,6.836,0.232,0.0,0.196,4.363,-2.949,0.0,0.0,7.064,0.0,-0.043,2.489,0.0,3.124,0.0,0.0,-5.771,-3.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,1298.4,1286.8,8606.2,3033.0,0.0,84000.0,0.0,0.0,24.62,91.58,22464.0,0.0,3869.0,0.0,128.0,5462.0,0.0,5703.0,0.0,1459.0,5842.0,17199.0,0.0,6416.0,0.0,78.0,1775.0,0.0,1973.0,0.0,2302.0,1335.0,3320.0,2532.0,0.0,1732.0,800.0
-house027.xml,74.114,74.114,31.33,31.33,42.784,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,7.646,0.885,0.0,0.0,0.0,5.944,0.218,0.485,0.927,0.0,0.0,0.0,1.634,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,7.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.79,0.0,17.924,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.525,0.0,22.332,8.556,5.271,0.0,0.0,0.0,0.0,1605.2,3756.5,3756.5,23.871,22.674,0.72,1.784,7.895,0.452,0.0,0.592,4.939,-4.011,0.0,0.0,0.32,3.229,-0.164,1.454,0.0,10.431,0.0,1.936,-6.271,-2.846,0.486,1.109,0.746,0.061,0.0,-0.107,0.944,6.599,0.0,0.0,0.147,3.815,-0.164,-0.271,-1.585,-3.306,0.0,2.015,8.68,3.099,1610.8,1575.3,10579.6,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,38432.0,7666.0,4494.0,0.0,375.0,6506.0,550.0,183.0,8238.0,1516.0,8905.0,19961.0,3763.0,4538.0,0.0,228.0,2884.0,270.0,2.0,0.0,2392.0,2565.0,3320.0,5887.0,1759.0,3328.0,800.0
-house028.xml,68.6,68.6,29.885,29.885,38.715,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,7.471,1.389,0.0,0.0,0.0,6.134,0.226,0.503,0.618,0.0,0.0,0.0,2.011,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,7.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.214,0.0,18.113,3.047,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.39,0.0,23.823,10.217,3.622,0.0,0.0,0.0,0.0,1543.1,3682.8,3682.8,20.03,23.003,0.767,1.656,7.153,0.356,0.0,0.439,4.923,-3.839,0.0,0.0,0.244,2.461,-0.056,4.054,0.0,4.47,0.0,1.499,-7.968,-2.892,0.601,1.183,-0.513,0.103,0.0,0.06,0.971,7.616,0.0,0.0,0.063,1.801,-0.057,-1.05,-2.186,-1.617,0.0,2.478,11.155,3.242,1857.6,1860.1,12951.7,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31811.0,8688.0,4365.0,0.0,272.0,5108.0,616.0,129.0,3569.0,1488.0,7577.0,20604.0,4014.0,6589.0,0.0,109.0,1852.0,374.0,2.0,0.0,2348.0,1768.0,3550.0,5319.0,2025.0,2293.0,1000.0
-house029.xml,78.82,78.82,30.458,30.458,48.362,0.0,0.0,0.0,0.0,0.0,0.0,0.741,0.0,0.0,6.681,0.867,0.0,0.0,0.0,6.539,0.275,0.569,0.76,0.0,0.0,0.0,1.847,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,6.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.706,0.0,12.586,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.452,0.0,14.45,9.606,0.0,0.0,0.0,0.0,0.0,1666.7,3340.0,3340.0,28.62,14.963,0.0,3.338,14.509,0.39,0.0,0.294,6.21,-6.033,0.0,0.0,6.82,0.0,-0.091,7.273,0.0,7.262,0.0,3.273,-7.279,-3.665,0.0,1.114,-0.802,0.007,0.0,0.068,1.13,6.503,0.0,0.0,-0.638,0.0,-0.086,-0.806,-1.957,-1.54,0.0,1.555,7.086,2.874,1610.8,1575.4,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,31002.0,3401.0,4924.0,0.0,120.0,7666.0,0.0,2973.0,0.0,2105.0,9813.0,15962.0,-515.0,5761.0,0.0,-11.0,1788.0,0.0,914.0,0.0,2842.0,1863.0,3320.0,4195.0,903.0,2492.0,800.0
-house030.xml,59.569,59.569,17.186,17.186,0.0,0.0,42.384,0.0,0.0,0.0,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.321,0.272,0.497,0.57,0.0,0.0,0.0,1.822,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.88,5.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.058,0.0,13.288,2.238,2.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,18.16,0.0,0.0,7.708,2.213,0.0,0.0,0.0,0.0,1161.3,1089.1,1161.3,16.168,0.0,0.0,1.653,10.111,0.483,1.092,1.034,5.176,-3.262,0.0,0.0,0.0,3.389,-0.048,2.721,0.0,5.679,0.0,0.0,-7.069,-2.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,1065.1,993.5,6761.6,2580.1,0.0,87000.0,0.0,0.0,17.24,91.22,20792.0,0.0,3366.0,0.0,449.0,7834.0,0.0,0.0,3900.0,1036.0,4206.0,10193.0,0.0,2912.0,0.0,183.0,1663.0,0.0,0.0,0.0,1399.0,946.0,3090.0,1866.0,0.0,1266.0,600.0
-house031.xml,235.538,235.538,50.259,50.259,185.279,0.0,0.0,0.0,0.0,0.0,0.0,3.633,0.0,0.0,12.842,3.2,0.0,0.0,0.0,10.355,0.246,0.759,0.0,0.0,0.0,0.0,1.486,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.053,12.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.8,0.0,29.081,4.254,4.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.74,0.0,39.491,17.919,5.236,0.0,0.0,50.0,113.0,3221.8,7726.5,7847.4,125.749,49.827,0.0,14.436,41.981,1.048,6.618,1.392,20.047,-16.789,0.0,0.0,1.977,6.044,-0.86,56.94,0.001,0.653,0.0,9.877,-15.327,-6.477,0.0,2.267,5.191,0.176,2.824,0.116,0.499,16.921,0.0,0.0,0.227,-3.598,-0.827,-1.831,-0.833,-0.009,0.0,3.051,10.994,3.878,2593.1,2708.5,18308.0,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83943.0,13714.0,10261.0,0.0,650.0,23580.0,0.0,643.0,1726.0,7333.0,26036.0,43647.0,9676.0,13165.0,0.0,305.0,7760.0,0.0,-124.0,0.0,5345.0,3511.0,4010.0,8716.0,1646.0,5670.0,1400.0
-house032.xml,102.299,102.299,15.55,15.55,86.749,0.0,0.0,0.0,0.0,0.0,0.0,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.091,0.0,0.518,0.0,0.0,0.0,0.0,1.583,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.859,4.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.52,0.0,16.252,2.201,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.391,0.0,0.0,7.996,4.946,0.0,0.0,154.0,0.0,1429.9,901.6,1429.9,50.645,0.0,0.0,10.388,8.743,1.918,20.355,1.409,8.345,-9.322,0.0,0.0,0.0,4.513,0.015,14.965,0.0,0.623,0.0,0.0,-8.206,-3.285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36492.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1507.0,5647.0,6957.0,17290.0,0.0,6289.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,936.0,3550.0,2512.0,0.0,1512.0,1000.0
-house033.xml,107.731,107.731,14.756,14.756,0.0,92.975,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,4.885,0.0,0.529,0.0,0.0,0.0,0.0,1.353,0.0,0.0,0.0,0.194,1.443,1.159,0.0,1.461,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.294,0.0,7.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.29,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1044.7,861.4,1044.7,48.451,0.0,0.0,19.12,14.557,0.0,0.0,1.0,11.111,-7.528,0.0,0.0,14.642,0.0,-0.368,18.592,0.0,0.791,0.0,0.0,-4.617,-3.316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.7,0.0,3905.6,1188.1,0.0,109000.0,0.0,0.0,16.16,89.24,32513.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7831.0,19037.0,0.0,4578.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1054.0,3550.0,2702.0,0.0,1702.0,1000.0
-house034.xml,155.512,155.512,43.167,43.167,0.0,0.0,112.345,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.489,0.341,1.205,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,15.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,0.0,0.0,0.0,0.0,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.983,0.0,21.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.387,0.0,0.0,11.564,5.444,0.0,0.0,0.0,0.0,3011.6,2525.6,3011.6,86.69,0.0,0.0,8.856,26.894,0.0,2.842,1.895,26.585,-26.228,0.0,0.0,10.893,2.685,0.049,34.727,0.0,0.57,0.0,0.0,-14.646,-10.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.9,1746.2,10287.0,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61853.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4062.0,1995.0,4622.0,18592.0,34721.0,0.0,20217.0,0.0,482.0,4382.0,0.0,212.0,0.0,3369.0,2510.0,3550.0,5053.0,0.0,4053.0,1000.0
-house035.xml,64.191,64.191,17.262,17.262,46.929,0.0,0.0,0.0,0.0,0.0,0.0,0.832,0.0,0.0,1.681,0.107,0.0,0.0,0.0,5.435,0.0,0.534,0.0,0.0,0.0,0.0,2.043,0.0,0.0,0.223,0.194,0.114,0.079,0.0,1.461,4.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.453,0.0,9.639,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.469,0.0,2.545,3.916,3.836,0.0,0.0,104.0,0.0,1396.7,2033.7,2033.7,39.497,9.871,0.365,6.108,10.785,0.0,0.0,0.534,6.072,-7.324,0.0,0.0,7.708,0.0,0.006,13.582,0.0,0.488,0.0,0.0,-7.184,-3.475,0.065,-0.497,-1.432,0.0,0.0,-0.076,-1.356,7.069,0.0,0.0,-4.261,0.0,0.011,-2.603,-1.198,-0.123,0.0,0.0,5.102,1.96,924.7,783.8,4210.1,1280.7,0.0,80000.0,24000.0,0.0,16.16,89.24,27887.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,10142.0,16125.0,0.0,5641.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1368.0,3320.0,3009.0,0.0,2209.0,800.0
-house036.xml,83.077,83.077,25.512,25.512,57.565,0.0,0.0,0.0,0.0,0.0,0.0,0.997,0.0,0.0,5.633,0.939,0.0,0.0,0.0,5.446,0.0,0.536,0.0,0.0,0.0,0.0,1.459,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.088,0.0,17.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.95,0.0,13.749,8.213,5.849,0.0,0.0,106.0,124.0,1503.0,3330.8,3330.8,32.088,17.073,5.495,2.25,3.959,0.0,0.0,1.819,6.784,-7.199,0.0,0.0,20.975,0.0,-0.011,7.394,0.0,0.552,0.0,0.0,-5.657,-3.433,1.639,0.148,0.018,0.0,0.0,-0.203,-0.839,5.702,0.0,0.0,2.612,0.0,-0.011,-0.703,-0.947,-0.057,0.0,0.0,4.264,2.013,1341.8,1265.0,6447.0,2476.3,0.0,60000.0,24000.0,0.0,16.16,89.24,25322.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,5035.0,13132.0,0.0,4222.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,678.0,3090.0,1694.0,0.0,1094.0,600.0
-house037.xml,89.347,89.347,21.69,21.69,0.0,67.658,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,6.804,0.0,0.61,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.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,51.513,0.0,16.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.243,0.0,0.0,7.424,0.0,0.0,0.0,0.0,0.0,1464.6,1261.1,1464.6,29.92,0.0,0.0,16.726,11.32,0.0,0.0,1.564,7.658,-10.359,0.0,0.0,6.485,0.0,-0.377,14.717,0.0,0.46,0.0,0.0,-6.013,-3.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,0.0,0.0,0.0,0.0,0.0,0.0,1341.8,1265.0,8324.2,3197.3,0.0,110000.0,0.0,0.0,19.22,86.72,40734.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,11288.0,26030.0,0.0,7077.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1257.0,3320.0,3327.0,0.0,2527.0,800.0
-house038.xml,126.267,126.267,50.705,50.705,75.562,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,13.518,2.476,0.0,0.0,0.0,6.904,0.315,0.625,0.0,0.0,0.0,0.0,1.429,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,6.092,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,51.541,0.0,24.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.305,0.0,30.436,14.704,4.602,0.0,0.0,0.0,215.0,2359.9,5801.3,5801.3,48.416,27.545,0.0,3.648,14.874,0.65,4.429,0.81,12.438,-10.449,0.0,0.0,1.856,2.334,-0.09,22.508,0.002,0.594,0.0,0.0,-8.966,-3.828,0.0,0.85,2.636,0.142,2.236,0.02,0.963,12.735,0.0,0.0,0.337,-0.579,-0.079,-0.53,-0.333,0.006,0.0,0.0,8.232,3.077,2176.0,2227.4,14642.1,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31254.0,0.0,6993.0,0.0,362.0,9766.0,0.0,640.0,734.0,1706.0,11053.0,18218.0,0.0,9122.0,0.0,170.0,2306.0,0.0,-123.0,0.0,1243.0,1491.0,4010.0,3807.0,0.0,2407.0,1400.0
-house039.xml,101.512,101.512,23.992,23.992,77.52,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,5.181,0.0,0.0,4.408,0.239,0.418,0.0,0.0,0.0,0.0,1.674,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.655,4.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.832,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.006,0.0,0.0,14.261,1.139,0.0,0.0,0.0,0.0,1705.9,1586.2,1705.9,50.362,0.0,0.0,14.176,5.359,0.0,0.0,2.503,16.085,-13.551,0.0,0.0,13.942,0.0,-0.055,13.236,0.0,0.554,0.0,0.0,-2.832,-2.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.0,2227.4,17537.6,5211.7,0.0,87000.0,0.0,0.0,16.16,89.24,42040.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6185.0,0.0,8806.0,11171.0,23026.0,0.0,9886.0,0.0,683.0,526.0,0.0,690.0,0.0,6418.0,1503.0,3320.0,3228.0,0.0,2428.0,800.0
-house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.969,0.0,0.0,7.996,5.526,0.0,0.0,0.0,0.0,1818.3,1304.9,1818.3,62.433,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,45034.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11904.0,24007.0,0.0,8227.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1605.0,3320.0,3392.0,0.0,2592.0,800.0
-house041.xml,261.841,261.841,47.066,47.066,214.775,0.0,0.0,0.0,0.0,0.0,0.0,4.228,0.0,0.0,2.676,0.259,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.176,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188.222,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,177.356,0.0,4.958,15.626,5.045,0.0,0.0,116.0,0.0,3254.0,5193.1,5193.1,77.826,25.933,0.0,11.225,44.885,3.505,34.926,3.133,39.076,-19.656,0.0,0.0,4.591,17.264,-0.566,64.044,0.0,2.76,0.0,0.0,-18.488,-10.896,0.0,0.085,-2.192,-0.127,1.612,-0.221,-2.52,10.639,0.0,0.0,-0.358,-5.283,-0.563,-3.396,-2.106,-0.253,0.0,0.0,6.721,3.039,1857.6,1860.1,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,110868.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,32212.0,27317.0,0.0,17198.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,850.0,3550.0,2301.0,0.0,1301.0,1000.0
-house042.xml,233.994,233.994,39.923,39.923,194.071,0.0,0.0,0.0,0.0,0.0,0.0,3.975,0.0,0.0,1.808,0.068,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.633,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.788,0.0,2.853,15.626,3.233,0.0,0.0,0.0,0.0,2712.1,3538.8,3538.8,88.551,19.928,0.0,9.153,39.725,4.0,43.57,2.643,34.455,-18.132,0.0,0.0,2.441,14.445,-0.329,56.25,0.0,1.747,0.0,0.0,-17.459,-7.571,0.0,0.191,-1.491,-0.065,2.811,-0.149,-2.784,6.491,0.0,0.0,-0.264,-4.932,-0.325,-2.742,-1.256,-0.14,0.0,0.0,5.602,1.962,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,97696.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,28314.0,16152.0,0.0,6497.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,745.0,3550.0,2140.0,0.0,1140.0,1000.0
-house043.xml,160.331,160.331,29.808,29.808,130.524,0.0,0.0,0.0,0.0,0.0,0.0,2.511,0.0,0.0,1.968,0.107,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.624,0.0,19.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.37,0.0,2.839,13.079,2.212,0.0,0.0,0.0,0.0,1956.8,3103.2,3103.2,54.831,14.428,0.0,3.161,23.126,2.288,33.655,5.564,23.082,-9.324,0.0,0.0,0.548,9.886,-0.285,28.962,0.0,1.574,0.0,0.0,-13.094,-5.138,0.0,0.035,-0.828,-0.09,1.692,-0.346,-1.857,5.129,0.0,0.0,-0.068,-3.557,-0.285,-1.53,-1.103,-0.141,0.0,0.0,4.448,1.421,1610.8,1575.4,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,65996.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16671.0,15200.0,0.0,7978.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,439.0,3320.0,1471.0,0.0,671.0,800.0
-house044.xml,228.725,228.725,43.393,43.393,185.333,0.0,0.0,0.0,0.0,0.0,0.0,4.767,0.0,0.0,2.15,0.191,0.0,0.0,0.0,12.947,0.315,0.974,0.037,0.0,0.0,0.0,2.098,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,12.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.764,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,0.0,3.764,13.079,4.457,0.0,0.0,0.0,0.0,3133.0,4207.4,4207.4,81.2,20.468,4.361,6.882,36.401,9.207,19.228,2.75,18.107,-10.889,0.0,0.0,12.879,15.008,-0.487,61.984,0.0,1.432,0.0,0.0,-16.566,-10.173,0.237,0.437,-1.419,-0.123,1.194,-0.12,-0.606,6.266,0.0,0.0,-1.143,-4.849,-0.484,-2.668,-1.025,-0.1,0.0,0.0,5.455,2.774,1610.8,1575.4,12168.2,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,82003.0,0.0,8422.0,0.0,1211.0,29262.0,1911.0,5137.0,2346.0,3592.0,30123.0,21596.0,0.0,11623.0,0.0,114.0,2778.0,368.0,-23.0,0.0,2623.0,792.0,3320.0,2011.0,0.0,1211.0,800.0
-house045.xml,153.298,153.298,35.107,35.107,118.191,0.0,0.0,0.0,0.0,0.0,0.0,2.804,0.0,0.0,2.456,0.299,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.142,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.737,0.0,22.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,0.0,4.195,13.079,4.37,0.0,0.0,0.0,0.0,2334.6,3484.1,3484.1,47.113,14.547,3.564,3.071,15.097,2.286,32.688,1.133,17.827,-11.713,0.966,-0.417,0.086,12.614,-0.25,20.662,0.0,10.923,0.0,0.0,-13.353,-6.961,-0.012,0.005,-1.071,-0.123,0.956,-0.085,-1.077,7.066,-0.063,0.396,-0.013,-4.021,-0.249,-1.143,-2.015,-1.231,0.0,0.0,4.872,2.099,1610.8,1575.4,12168.2,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,57795.0,0.0,8558.0,455.0,398.0,28557.0,1494.0,31.0,2749.0,1367.0,14186.0,13977.0,0.0,8179.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,462.0,3320.0,1508.0,0.0,708.0,800.0
-house046.xml,25.31,25.31,25.31,25.31,0.0,0.0,0.0,0.0,0.0,0.0,5.464,0.463,0.34,0.011,3.901,1.08,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.668,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.368,0.352,13.527,4.303,0.617,0.0,0.0,0.0,1.0,3909.7,2479.5,3909.7,16.387,13.763,0.0,2.508,3.823,0.0,0.0,0.326,2.208,-1.681,0.0,0.0,-0.157,0.0,-0.307,8.058,0.0,0.376,0.0,2.948,-3.211,-0.473,0.0,1.254,2.498,0.0,0.0,0.022,1.066,2.959,0.0,0.0,-0.156,0.0,-0.306,-0.437,-0.24,0.018,0.0,1.865,4.485,0.556,596.8,442.4,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19233.0,4029.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8772.0,15624.0,3895.0,3759.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1750.0,2860.0,3154.0,483.0,2271.0,400.0
-house047.xml,21.556,21.556,14.891,14.891,6.665,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,1.114,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.336,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,1.652,4.202,0.0,0.0,0.0,0.0,0.0,873.0,1000.3,1000.3,4.824,2.745,0.0,-0.001,0.77,0.126,0.0,0.0,1.718,-0.566,0.0,0.0,0.0,1.354,-0.012,1.577,0.0,4.97,0.0,0.218,-3.191,-0.509,0.0,-0.0,0.099,0.032,0.0,0.0,0.045,0.978,0.0,0.0,0.0,-1.14,-0.012,-0.224,-0.394,-1.358,0.0,-0.0,3.217,0.411,251.7,442.4,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7925.0,1056.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,4295.0,4240.0,0.0,522.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,680.0,2860.0,1767.0,0.0,1367.0,400.0
-house048.xml,92.709,92.709,40.023,40.023,52.686,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,13.177,3.872,0.0,0.0,0.0,3.689,0.085,0.499,2.987,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.762,0.0,12.584,0.0,3.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.756,0.0,54.039,7.249,2.652,0.0,0.0,0.0,0.0,1515.7,5651.3,5651.3,42.78,34.529,1.013,2.599,11.947,0.0,0.0,0.802,4.476,-2.656,0.0,0.0,0.056,1.965,-0.582,7.141,0.0,4.211,0.0,6.466,-6.3,-1.482,1.341,1.0,9.236,0.0,0.0,0.563,4.719,5.319,0.0,0.0,0.075,9.919,-0.57,0.639,-0.643,1.923,0.0,7.363,11.194,2.207,130.3,818.0,11617.6,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,51627.0,12345.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,10413.0,30563.0,8429.0,4943.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3856.0,3550.0,4794.0,1127.0,2667.0,1000.0
-house049.xml,36.103,36.103,32.605,32.605,3.498,0.0,0.0,0.0,0.0,0.0,7.744,0.047,0.0,0.0,8.044,0.206,2.639,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.962,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.917,0.0,32.413,4.258,1.314,0.0,0.0,0.0,225.0,4661.1,2826.4,4661.1,13.204,15.978,0.0,1.322,4.228,0.0,0.0,0.0,4.079,-5.77,0.0,0.0,0.0,1.239,-0.081,2.424,0.0,1.805,0.0,0.0,-1.973,-0.459,0.0,1.658,6.999,0.0,0.0,0.0,3.722,12.1,0.0,0.0,0.0,3.275,-0.08,-0.229,-3.302,0.609,0.0,0.0,7.194,1.014,728.6,567.6,7488.0,928.6,0.0,39000.0,16000.0,0.0,33.26,106.16,19187.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4521.0,21175.0,0.0,7292.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2932.0,3090.0,0.0,0.0,0.0,0.0
-house050.xml,52.412,52.412,22.03,22.03,30.381,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,2.184,0.392,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.184,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.467,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.084,0.0,6.278,8.571,0.0,0.0,0.0,0.0,0.0,1103.3,3098.6,3098.6,11.195,19.315,0.0,4.133,6.509,0.0,0.0,2.031,5.119,-4.2,0.0,0.0,4.887,0.0,-0.175,2.297,0.0,3.676,0.0,1.971,-9.028,-1.204,0.0,-0.304,-0.319,0.0,0.0,-0.39,0.857,4.931,0.0,0.0,-0.995,0.0,-0.173,-0.453,-2.684,-0.736,0.0,0.719,5.286,0.578,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21857.0,7749.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3201.0,19063.0,5192.0,7006.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,621.0,3320.0,1245.0,110.0,335.0,800.0
diff --git a/resources/hpxml-measures/workflow/tests/test_ashrae_140.rb b/resources/hpxml-measures/workflow/tests/test_ashrae_140.rb
index ddadb13de9..5adda9b3de 100644
--- a/resources/hpxml-measures/workflow/tests/test_ashrae_140.rb
+++ b/resources/hpxml-measures/workflow/tests/test_ashrae_140.rb
@@ -20,7 +20,7 @@ def test_simulations_ashrae_140
Dir["#{ashrae140_dir}/*.xml"].sort.each do |xml|
xmls << File.absolute_path(xml)
end
- all_results, _ = run_simulation_tests(xmls)
+ all_results = run_simulation_tests(xmls)
_write_ashrae_140_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out)
end
diff --git a/resources/hpxml-measures/workflow/tests/test_simulations1.rb b/resources/hpxml-measures/workflow/tests/test_simulations1.rb
index 9eb7f11ab4..b7c4737067 100644
--- a/resources/hpxml-measures/workflow/tests/test_simulations1.rb
+++ b/resources/hpxml-measures/workflow/tests/test_simulations1.rb
@@ -12,10 +12,8 @@ def test_simulations1
results_dir = File.join(File.dirname(__FILE__), 'results')
FileUtils.mkdir_p results_dir
- results_out = File.join(results_dir, 'results_workflow_simulations1.csv')
- bills_out = File.join(results_dir, 'results_workflow_simulations1_bills.csv')
- File.delete(results_out) if File.exist? results_out
- File.delete(bills_out) if File.exist? bills_out
+ results_out = File.join(results_dir, 'results_simulations1.csv')
+ Dir.glob("#{File.dirname(results_out)}/#{File.basename(results_out).gsub('.csv', '*.csv')}").each { |file| File.delete(file) }
sample_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'sample_files'))
real_homes_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'real_homes'))
@@ -32,9 +30,8 @@ def test_simulations1
end
end
xmls = xmls[0..split_at_file - 1]
- all_results, all_results_bills = run_simulation_tests(xmls)
+ all_results = run_simulation_tests(xmls)
_write_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out)
- _write_results(all_results_bills.sort_by { |k, _v| k.downcase }.to_h, bills_out)
end
end
diff --git a/resources/hpxml-measures/workflow/tests/test_simulations2.rb b/resources/hpxml-measures/workflow/tests/test_simulations2.rb
index a9e4a3852f..33b27f4101 100644
--- a/resources/hpxml-measures/workflow/tests/test_simulations2.rb
+++ b/resources/hpxml-measures/workflow/tests/test_simulations2.rb
@@ -12,10 +12,8 @@ def test_simulations2
results_dir = File.join(File.dirname(__FILE__), 'results')
FileUtils.mkdir_p results_dir
- results_out = File.join(results_dir, 'results_workflow_simulations2.csv')
- bills_out = File.join(results_dir, 'results_workflow_simulations2_bills.csv')
- File.delete(results_out) if File.exist? results_out
- File.delete(bills_out) if File.exist? bills_out
+ results_out = File.join(results_dir, 'results_simulations2.csv')
+ Dir.glob("#{File.dirname(results_out)}/#{File.basename(results_out).gsub('.csv', '*.csv')}").each { |file| File.delete(file) }
sample_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'sample_files'))
real_homes_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'real_homes'))
@@ -32,9 +30,8 @@ def test_simulations2
end
end
xmls = xmls[split_at_file..-1]
- all_results, all_results_bills = run_simulation_tests(xmls)
+ all_results = run_simulation_tests(xmls)
_write_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out)
- _write_results(all_results_bills.sort_by { |k, _v| k.downcase }.to_h, bills_out)
end
end
diff --git a/resources/hpxml-measures/workflow/tests/util.rb b/resources/hpxml-measures/workflow/tests/util.rb
index fb493072e0..bf24f737b9 100644
--- a/resources/hpxml-measures/workflow/tests/util.rb
+++ b/resources/hpxml-measures/workflow/tests/util.rb
@@ -4,13 +4,12 @@ def run_simulation_tests(xmls)
# Run simulations
puts "Running #{xmls.size} HPXML files..."
all_results = {}
- all_results_bills = {}
Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml|
next if xml.end_with? '-10x.xml'
xml_name = File.basename(xml)
results = _run_xml(xml, Parallel.worker_number)
- all_results[xml_name], all_results_bills[xml_name], timeseries_results = results
+ all_results[xml_name], timeseries_results = results
next unless xml.include?('sample_files') || xml.include?('real_homes') # Exclude e.g. ASHRAE 140 files
next if xml.include? 'base-bldgtype-mf-whole-building' # Already has multiple dwelling units
@@ -20,7 +19,7 @@ def run_simulation_tests(xmls)
_run_xml(xml, Parallel.worker_number, true, all_results[xml_name], timeseries_results)
end
- return all_results, all_results_bills
+ return all_results
end
def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, timeseries_results_1x = nil)
@@ -107,18 +106,17 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t
end
flunk "EPvalidator.xml error in #{hpxml_defaults_path}."
end
- bill_results = _get_bill_results(bills_csv_path)
- results = _get_simulation_results(annual_csv_path)
+ results = _get_simulation_results(annual_csv_path, bills_csv_path)
timeseries_results = _get_simulation_timeseries_results(timeseries_csv_path)
_verify_outputs(rundir, xml, results, hpxml, unit_multiplier)
if unit_multiplier > 1
_check_unit_multiplier_results(hpxml.buildings[0], results_1x, results, timeseries_results_1x, timeseries_results, unit_multiplier)
end
- return results, bill_results, timeseries_results
+ return results, timeseries_results
end
-def _get_simulation_results(annual_csv_path)
+def _get_simulation_results(annual_csv_path, bills_csv_path)
# Grab all outputs from reporting measure CSV annual results
results = {}
CSV.foreach(annual_csv_path) do |row|
@@ -127,6 +125,16 @@ def _get_simulation_results(annual_csv_path)
results[row[0]] = Float(row[1])
end
+ # Grab all outputs (except monthly) from reporting measure CSV bill results
+ if File.exist? bills_csv_path
+ CSV.foreach(bills_csv_path) do |row|
+ next if row.nil? || (row.size < 2)
+ next if (1..12).to_a.any? { |month| row[0].include?(": Month #{month}:") }
+
+ results["Utility Bills: #{row[0]}"] = Float(row[1])
+ end
+ end
+
return results
end
@@ -152,21 +160,6 @@ def _get_simulation_timeseries_results(timeseries_csv_path)
return results
end
-def _get_bill_results(bill_csv_path)
- # Grab all outputs (except monthly) from reporting measure CSV bill results
- results = {}
- if File.exist? bill_csv_path
- CSV.foreach(bill_csv_path) do |row|
- next if row.nil? || (row.size < 2)
- next if (1..12).to_a.any? { |month| row[0].include?(": Month #{month}:") }
-
- results[row[0]] = Float(row[1])
- end
- end
-
- return results
-end
-
def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier)
assert(File.exist? File.join(rundir, 'eplusout.msgpack'))
@@ -1055,7 +1048,9 @@ def get_tolerances(key)
# Number of systems and thermal zones change between the 1x and 10x runs,
# so remove these from the comparison
- ['System Use:', 'Temperature:'].each do |key|
+ annual_results_1x = annual_results_1x.dup
+ annual_results_10x = annual_results_10x.dup
+ ['System Use:', 'Temperature:', 'Utility Bills:'].each do |key|
annual_results_1x.delete_if { |k, _v| k.start_with? key }
annual_results_10x.delete_if { |k, _v| k.start_with? key }
timeseries_results_1x.delete_if { |k, _v| k.start_with? key }
@@ -1121,33 +1116,44 @@ def get_tolerances(key)
def _write_results(results, csv_out)
require 'csv'
- output_keys = []
- results.values.each do |xml_results|
- # Don't include emissions and system uses in output file/CI results
- xml_results.delete_if { |k, _v| k.start_with? 'Emissions:' }
- xml_results.delete_if { |k, _v| k.start_with? 'System Use:' }
-
- xml_results.keys.each do |key|
- next if output_keys.include? key
-
- output_keys << key
+ output_groups = {
+ 'energy' => ['Energy Use', 'Fuel Use', 'End Use'],
+ 'loads' => ['Load', 'Component Load'],
+ 'hvac' => ['HVAC Design Temperature', 'HVAC Capacity', 'HVAC Design Load'],
+ 'misc' => ['Unmet Hours', 'Hot Water', 'Peak Electricity', 'Peak Load', 'Resilience'],
+ 'bills' => ['Utility Bills'],
+ }
+
+ output_groups.each do |output_group, key_types|
+ output_keys = []
+ key_types.each do |key_type|
+ results.values.each do |xml_results|
+ xml_results.keys.each do |key|
+ next if output_keys.include? key
+ next if key_type != key.split(':')[0]
+
+ output_keys << key
+ end
+ end
end
- end
- CSV.open(csv_out, 'w') do |csv|
- csv << ['HPXML'] + output_keys
- results.sort.each do |xml, xml_results|
- csv_row = [xml]
- output_keys.each do |key|
- if xml_results[key].nil?
- csv_row << 0
- else
- csv_row << xml_results[key]
+ this_csv_out = csv_out.gsub('.csv', "_#{output_group}.csv")
+
+ CSV.open(this_csv_out, 'w') do |csv|
+ csv << ['HPXML'] + output_keys
+ results.sort.each do |xml, xml_results|
+ csv_row = [xml]
+ output_keys.each do |key|
+ if xml_results[key].nil?
+ csv_row << 0
+ else
+ csv_row << xml_results[key]
+ end
end
+ csv << csv_row
end
- csv << csv_row
end
end
- puts "Wrote results to #{csv_out}."
+ puts "Wrote results to #{csv_out.gsub('.csv', '_*.csv')}."
end